nix-gh/corepkgs/buildenv.nix

22 lines
637 B
Nix
Raw Normal View History

with import <nix/config.nix>;
2012-04-14 18:48:11 +02:00
{ derivations, manifest }:
derivation {
name = "user-environment";
2012-04-14 18:48:11 +02:00
system = builtins.currentSystem;
builder = perl;
args = [ "-w" ./buildenv.pl ];
manifest = manifest;
# !!! grmbl, need structured data for passing this in a clean way.
paths = derivations;
active = map (x: if x ? meta && x.meta ? active then x.meta.active else "true") derivations;
priority = map (x: if x ? meta && x.meta ? priority then x.meta.priority else "5") derivations;
# Building user environments remotely just causes huge amounts of
# network traffic, so don't do that.
preferLocalBuild = true;
}