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 /scripts/nix-push.in | |
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 'scripts/nix-push.in')
-rw-r--r-- | scripts/nix-push.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-push.in b/scripts/nix-push.in index 7d285e0034a1..373533190a06 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -103,7 +103,7 @@ foreach my $storePath (@storePaths) { # expression. my $nixexpr = "((import $dataDir/nix/corepkgs/nar/nar.nix) " . - "{path = \"$storePath\"; system = \"@system@\"; hashAlgo = \"$hashAlgo\";}) "; + "{storePath = \"$storePath\"; system = \"@system@\"; hashAlgo = \"$hashAlgo\";}) "; print NIX $nixexpr; } |