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.nix6
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;
 }