This commit is contained in:
Eelco Dolstra
2020-02-02 11:31:58 +01:00
parent b270869466
commit 958ec5de56
6 changed files with 19 additions and 29 deletions
+2 -2
View File
@@ -84,7 +84,7 @@ LockedInput::LockedInput(const nlohmann::json & json)
, originalRef(getFlakeRef(json, "originalUrl", "originalUri", "original"))
, info(parseTreeInfo(json))
{
if (!lockedRef.isImmutable())
if (!lockedRef.input->isImmutable())
throw Error("lockfile contains mutable flakeref '%s'", lockedRef);
}
@@ -136,7 +136,7 @@ nlohmann::json LockedInputs::toJson() const
bool LockedInputs::isImmutable() const
{
for (auto & i : inputs)
if (!i.second.lockedRef.isImmutable() || !i.second.isImmutable()) return false;
if (!i.second.lockedRef.input->isImmutable() || !i.second.isImmutable()) return false;
return true;
}