diff options
Diffstat (limited to 'corepkgs/nar/nar.nix')
-rw-r--r-- | corepkgs/nar/nar.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/corepkgs/nar/nar.nix b/corepkgs/nar/nar.nix index e0d4878bf4f3..da63bde9a62e 100644 --- a/corepkgs/nar/nar.nix +++ b/corepkgs/nar/nar.nix @@ -1,5 +1,7 @@ -{system, path, hashAlgo}: derivation { +{system, storePath, hashAlgo}: + +derivation { name = "nar"; builder = ./nar.sh; - inherit system path hashAlgo; + inherit system storePath hashAlgo; } |