* In nar.nix, path -> storePath, otherwise we get a collision between

environment variable names on Cygwin (where they are case
  insensitive).
This commit is contained in:
Eelco Dolstra 2006-08-07 18:22:57 +00:00
parent a61129c48c
commit 5a6b45e252
3 changed files with 7 additions and 5 deletions

View file

@ -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;
}