forked from lix-project/lix
Ignore broken "Deriver: unknown-deriver" fields in .narinfo
These were generated by a legacy tool.
This commit is contained in:
parent
023217f07c
commit
c60715e937
|
@ -59,9 +59,11 @@ NarInfo::NarInfo(const Store & store, const std::string & s, const std::string &
|
|||
}
|
||||
}
|
||||
else if (name == "Deriver") {
|
||||
auto p = store.storeDir + "/" + value;
|
||||
if (!store.isStorePath(p)) corrupt();
|
||||
deriver = p;
|
||||
if (value != "unknown-deriver") {
|
||||
auto p = store.storeDir + "/" + value;
|
||||
if (!store.isStorePath(p)) corrupt();
|
||||
deriver = p;
|
||||
}
|
||||
}
|
||||
else if (name == "System")
|
||||
system = value;
|
||||
|
|
Loading…
Reference in a new issue