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