Skip to content

Commit

Permalink
Merge pull request #70 from hercules-ci/fix-pure-builtins.path
Browse files Browse the repository at this point in the history
Fix non-fetchTree pure-eval use of builtins.path
  • Loading branch information
edolstra authored Dec 4, 2024
2 parents 9ed2ac1 + a220b6b commit ff81ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ let
} else {
})
else if info.type == "path" then
{ outPath = builtins.path { path = info.path; };
{ outPath = builtins.path { path = info.path; sha256 = info.narHash; };
narHash = info.narHash;
}
else if info.type == "tarball" then
Expand Down

0 comments on commit ff81ac9

Please sign in to comment.