Merge pull request #12 from FlafyDev/evaluable-entire-flake

evaluate entire flake thunk
This commit is contained in:
Max Headroom 2023-06-22 21:33:55 +02:00 committed by GitHub
commit 091d10c825
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -222,7 +222,7 @@ static Flake getFlake(
throw Error("source tree referenced by '%s' does not contain a '%s/flake.nix' file", lockedRef, lockedRef.subdir);
Value vInfo;
state.evalFile(CanonPath(flakeFile), vInfo, true); // FIXME: symlink attack
state.evalFile(CanonPath(flakeFile), vInfo, false); // FIXME: symlink attack
expectType(state, nAttrs, vInfo, state.positions.add({CanonPath(flakeFile)}, 1, 1));