aboutsummaryrefslogtreecommitdiff
path: root/corepkgs/buildenv.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-03-11 16:41:22 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-03-11 16:57:48 +0100
commit9950cdec3514949942a79c58764b1ea9bf9d5d57 (patch)
treee514f3102570c3e10034e0c1476b863ca289504e /corepkgs/buildenv.nix
parente02481ded216ffb5b06b413e3695d4e11e62e02f (diff)
Move some corepkgs into the nix binary
Diffstat (limited to 'corepkgs/buildenv.nix')
-rw-r--r--corepkgs/buildenv.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/corepkgs/buildenv.nix b/corepkgs/buildenv.nix
deleted file mode 100644
index 0bac4c44b..000000000
--- a/corepkgs/buildenv.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ derivations, manifest }:
-
-derivation {
- name = "user-environment";
- system = "builtin";
- builder = "builtin:buildenv";
-
- inherit manifest;
-
- # !!! grmbl, need structured data for passing this in a clean way.
- derivations =
- map (d:
- [ (d.meta.active or "true")
- (d.meta.priority or 5)
- (builtins.length d.outputs)
- ] ++ map (output: builtins.getAttr output d) d.outputs)
- derivations;
-
- # Building user environments remotely just causes huge amounts of
- # network traffic, so don't do that.
- preferLocalBuild = true;
-
- # Also don't bother substituting.
- allowSubstitutes = false;
-}