Skip to content

Commit ff81ac9

Browse files
authored
Merge pull request #70 from hercules-ci/fix-pure-builtins.path
Fix non-fetchTree pure-eval use of builtins.path
2 parents 9ed2ac1 + a220b6b commit ff81ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ let
4545
} else {
4646
})
4747
else if info.type == "path" then
48-
{ outPath = builtins.path { path = info.path; };
48+
{ outPath = builtins.path { path = info.path; sha256 = info.narHash; };
4949
narHash = info.narHash;
5050
}
5151
else if info.type == "tarball" then

0 commit comments

Comments
 (0)