Restore linkFarm trivial builder
svn path=/nixpkgs/trunk/; revision=18566
This commit is contained in:
parent
bbd6e56d69
commit
e99acbff72
|
@ -68,4 +68,9 @@ rec {
|
||||||
done < graph
|
done < graph
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# 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));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue