mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
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
|
||||
'';
|
||||
|
||||
# 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
Block a user