mirror of
https://github.com/edolstra/flake-compat.git
synced 2024-12-14 11:47:34 +00:00
Merge pull request #70 from hercules-ci/fix-pure-builtins.path
Fix non-fetchTree pure-eval use of builtins.path
This commit is contained in:
commit
ff81ac966b
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ let
|
||||||
} else {
|
} else {
|
||||||
})
|
})
|
||||||
else if info.type == "path" then
|
else if info.type == "path" then
|
||||||
{ outPath = builtins.path { path = info.path; };
|
{ outPath = builtins.path { path = info.path; sha256 = info.narHash; };
|
||||||
narHash = info.narHash;
|
narHash = info.narHash;
|
||||||
}
|
}
|
||||||
else if info.type == "tarball" then
|
else if info.type == "tarball" then
|
||||||
|
|
Loading…
Reference in a new issue