Fix linkFarm for its new location

svn path=/nixpkgs/trunk/; revision=18567
This commit is contained in:
Michael Raskin 2009-11-23 19:28:03 +00:00
parent e99acbff72
commit e8c3467487

View File

@ -71,6 +71,6 @@ rec {
# Quickly create a set of symlinks to derivations.
# entries is a list of attribute sets like { name = "name" ; path = "/nix/store/..."; }
linkFarm = name: entries: runCommand name {} ("mkdir -p $out; cd $out; \n" +
(lib.concatMapStrings (x: "ln -s '${x.path}' '${x.name}';\n") entries));
(stdenv.lib.concatMapStrings (x: "ln -s '${x.path}' '${x.name}';\n") entries));
}