2012-01-03 01:16:29 +01:00
|
|
|
with import <nix/config.nix>;
|
|
|
|
|
2012-04-14 18:48:11 +02:00
|
|
|
{ derivations, manifest }:
|
2003-11-19 18:27:16 +01:00
|
|
|
|
2012-12-04 14:20:36 +01:00
|
|
|
derivation {
|
2003-11-19 18:27:16 +01:00
|
|
|
name = "user-environment";
|
2012-04-14 18:48:11 +02:00
|
|
|
system = builtins.currentSystem;
|
2012-01-03 01:16:29 +01:00
|
|
|
builder = perl;
|
|
|
|
args = [ "-w" ./buildenv.pl ];
|
2012-12-04 14:20:36 +01:00
|
|
|
|
2003-11-19 18:27:16 +01:00
|
|
|
manifest = manifest;
|
2007-04-28 00:40:59 +02:00
|
|
|
|
|
|
|
# !!! grmbl, need structured data for passing this in a clean way.
|
2012-12-04 14:20:36 +01:00
|
|
|
derivations =
|
|
|
|
map (d:
|
2012-12-04 14:30:34 +01:00
|
|
|
[ (d.meta.active or "true")
|
2012-12-04 14:20:36 +01:00
|
|
|
(d.meta.priority or 5)
|
|
|
|
(builtins.length d.outputs)
|
|
|
|
] ++ map (output: builtins.getAttr output d) d.outputs)
|
|
|
|
derivations;
|
2010-08-04 14:13:58 +02:00
|
|
|
|
|
|
|
# Building user environments remotely just causes huge amounts of
|
|
|
|
# network traffic, so don't do that.
|
|
|
|
preferLocalBuild = true;
|
2012-05-10 04:14:36 +02:00
|
|
|
|
2015-11-08 20:18:15 +01:00
|
|
|
__impureHostDeps = if builtins.currentSystem == "x86_64-darwin" then [
|
2015-09-29 18:03:19 +02:00
|
|
|
"/usr/lib/libSystem.dylib"
|
|
|
|
"/usr/lib/system"
|
2015-11-08 20:18:15 +01:00
|
|
|
] else null;
|
2015-09-29 18:03:19 +02:00
|
|
|
|
2015-03-24 11:15:45 +01:00
|
|
|
inherit chrootDeps;
|
2003-11-19 18:27:16 +01:00
|
|
|
}
|