2012-01-03 02:16:29 +02:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2012-04-14 19:48:11 +03:00
|
|
|
{ derivations, manifest }:
|
2003-11-19 19:27:16 +02:00
|
|
|
|
|
|
|
derivation {
|
|
|
|
name = "user-environment";
|
2012-04-14 19:48:11 +03:00
|
|
|
system = builtins.currentSystem;
|
2012-01-03 02:16:29 +02:00
|
|
|
builder = perl;
|
|
|
|
args = [ "-w" ./buildenv.pl ];
|
2007-04-28 02:28:44 +03:00
|
|
|
|
2003-11-19 19:27:16 +02:00
|
|
|
manifest = manifest;
|
2007-04-28 01:40:59 +03:00
|
|
|
|
|
|
|
# !!! grmbl, need structured data for passing this in a clean way.
|
2007-04-28 02:28:44 +03:00
|
|
|
paths = derivations;
|
2007-04-28 01:40:59 +03:00
|
|
|
active = map (x: if x ? meta && x.meta ? active then x.meta.active else "true") derivations;
|
2007-04-28 02:28:44 +03:00
|
|
|
priority = map (x: if x ? meta && x.meta ? priority then x.meta.priority else "5") derivations;
|
2010-08-04 15:13:58 +03:00
|
|
|
|
|
|
|
# Building user environments remotely just causes huge amounts of
|
|
|
|
# network traffic, so don't do that.
|
|
|
|
preferLocalBuild = true;
|
2012-05-10 05:14:36 +03:00
|
|
|
|
|
|
|
# Don't build in a chroot because Nix's dependencies may not be there.
|
|
|
|
__noChroot = true;
|
2003-11-19 19:27:16 +02:00
|
|
|
}
|