2012-04-14 16:48:11 +00:00
|
|
|
{ derivations, manifest }:
|
2003-11-19 17:27:16 +00:00
|
|
|
|
2012-12-04 13:20:36 +00:00
|
|
|
derivation {
|
2003-11-19 17:27:16 +00:00
|
|
|
name = "user-environment";
|
2018-03-20 16:28:09 +00:00
|
|
|
system = "builtin";
|
|
|
|
builder = "builtin:buildenv";
|
2012-12-04 13:20:36 +00:00
|
|
|
|
2016-01-18 14:06:36 +00:00
|
|
|
inherit manifest;
|
2007-04-27 22:40:59 +00:00
|
|
|
|
|
|
|
# !!! grmbl, need structured data for passing this in a clean way.
|
2012-12-04 13:20:36 +00:00
|
|
|
derivations =
|
|
|
|
map (d:
|
2012-12-04 13:30:34 +00:00
|
|
|
[ (d.meta.active or "true")
|
2012-12-04 13:20:36 +00:00
|
|
|
(d.meta.priority or 5)
|
|
|
|
(builtins.length d.outputs)
|
|
|
|
] ++ map (output: builtins.getAttr output d) d.outputs)
|
|
|
|
derivations;
|
2010-08-04 12:13:58 +00:00
|
|
|
|
|
|
|
# Building user environments remotely just causes huge amounts of
|
|
|
|
# network traffic, so don't do that.
|
|
|
|
preferLocalBuild = true;
|
2012-05-10 02:14:36 +00:00
|
|
|
|
2016-01-18 14:06:36 +00:00
|
|
|
# Also don't bother substituting.
|
|
|
|
allowSubstitutes = false;
|
2003-11-19 17:27:16 +00:00
|
|
|
}
|