diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-07T18·22+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-08-07T18·22+0000 |
commit | 5a6b45e2523c29c215f77135c6866baa83f1a7d5 (patch) | |
tree | 21423725196659580060186934604f3b1e31f90a /corepkgs/nar/nar.nix | |
parent | a61129c48cfc11f1b836f42e178aaf231c1fed82 (diff) |
* In nar.nix, path -> storePath, otherwise we get a collision between
environment variable names on Cygwin (where they are case insensitive).
Diffstat (limited to 'corepkgs/nar/nar.nix')
-rw-r--r-- | corepkgs/nar/nar.nix | 6 |
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; } |