aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/nar-info.hh
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2022-06-23 14:24:23 -0400
committerCole Helbling <cole.e.helbling@outlook.com>2022-06-23 14:25:10 -0400
commit561a258f1d9fd11a5e111e14c492ee166a7551c1 (patch)
treecb518a0ef95f236f62b9c1957fe402f5fea7c8d3 /src/libstore/nar-info.hh
parent3c57db1a0f5438015c19285ec02fd15d9c6cb51f (diff)
libstore/nar-info: drop unused system field
This was unused everywhere (and even the official NixOS binary cache did not produce .narinfo files containing a "System:" field).
Diffstat (limited to 'src/libstore/nar-info.hh')
-rw-r--r--src/libstore/nar-info.hh1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstore/nar-info.hh b/src/libstore/nar-info.hh
index 39ced76e5..01683ec73 100644
--- a/src/libstore/nar-info.hh
+++ b/src/libstore/nar-info.hh
@@ -14,7 +14,6 @@ struct NarInfo : ValidPathInfo
std::string compression;
std::optional<Hash> fileHash;
uint64_t fileSize = 0;
- std::string system;
NarInfo() = delete;
NarInfo(StorePath && path, Hash narHash) : ValidPathInfo(std::move(path), narHash) { }