mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
Fix nar info parsing
This commit is contained in:
parent
70ed47c1cb
commit
6683406843
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ NarInfo::NarInfo(const Store & store, const std::string & s, const std::string &
|
|||
auto refs = tokenizeString<Strings>(value, " ");
|
||||
if (!references.empty()) corrupt();
|
||||
for (auto & r : refs)
|
||||
references.insert(StorePath(r));
|
||||
insertReferencePossiblyToSelf(StorePath(r));
|
||||
}
|
||||
else if (name == "Deriver") {
|
||||
if (value != "unknown-deriver")
|
||||
|
|
Loading…
Reference in a new issue