diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-15T11·12+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-03-15T11·12+0000 |
commit | e52ae1c0ffed6af893438cb456c5c38a272c8b21 (patch) | |
tree | 377ed4355afd78620c77337b94a606511c4e1475 /corepkgs/nar/nar.nix | |
parent | 155c91b335c4041db5c9e83b8314757bdf7137b8 (diff) |
* Use SHA-256 for nix-push.
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; } |