about summary refs log tree commit diff
path: root/corepkgs/buildenv.nix
blob: 6e2bee10b1e71ac0d87fbde3aeaf4bef20e449d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
with import <nix/config.nix>;

{ system, derivations, manifest }:

derivation { 
  name = "user-environment";
  system = system;
  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;
}