mirror of
https://github.com/NixOS/nix.git
synced 2025-11-16 07:22:43 +01:00
Change the meaning of info.ultimate
It now means "paths that were built locally". It no longer includes paths that were added locally. For those we don't need info.ultimate, since we have the content-addressability assertion (info.ca).
This commit is contained in:
parent
45d7b1a9e9
commit
6f245bf24a
2 changed files with 2 additions and 5 deletions
|
|
@ -1010,7 +1010,6 @@ Path LocalStore::addToStoreFromDump(const string & dump, const string & name,
|
|||
info.path = dstPath;
|
||||
info.narHash = hash.first;
|
||||
info.narSize = hash.second;
|
||||
info.ultimate = true;
|
||||
info.ca = makeFixedOutputCA(recursive, h);
|
||||
registerValidPath(info);
|
||||
}
|
||||
|
|
@ -1073,7 +1072,6 @@ Path LocalStore::addTextToStore(const string & name, const string & s,
|
|||
info.narHash = narHash;
|
||||
info.narSize = sink.s->size();
|
||||
info.references = references;
|
||||
info.ultimate = true;
|
||||
info.ca = "text:" + hash.to_string();
|
||||
registerValidPath(info);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue