about summary refs log tree commit diff
path: root/corepkgs/nar/nar.nix
diff options
context:
space:
mode:
Diffstat (limited to 'corepkgs/nar/nar.nix')
-rw-r--r--corepkgs/nar/nar.nix5
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;
 }