about summary refs log tree commit diff
path: root/corepkgs/nar/nar.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-03-15T11·12+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-03-15T11·12+0000
commite52ae1c0ffed6af893438cb456c5c38a272c8b21 (patch)
tree377ed4355afd78620c77337b94a606511c4e1475 /corepkgs/nar/nar.nix
parent155c91b335c4041db5c9e83b8314757bdf7137b8 (diff)
* Use SHA-256 for nix-push.
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;
 }