about summary refs log tree commit diff
path: root/corepkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2012-07-08T15·11-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-09T19·29-0400
commita2865f6b3d2af5593a100cba5c86ba62a1330bdb (patch)
tree04fed05db1dfc07af95df9ac4199bd26b59458b4 /corepkgs
parent53f52c2111bcf339bdaab703a263fd2c001da51c (diff)
corepkgs/fetchurl: Build locally and outside of the chroot
Diffstat (limited to 'corepkgs')
-rw-r--r--corepkgs/fetchurl.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/corepkgs/fetchurl.nix b/corepkgs/fetchurl.nix
index 3d467fe187..91870a70c1 100644
--- a/corepkgs/fetchurl.nix
+++ b/corepkgs/fetchurl.nix
@@ -23,4 +23,10 @@ derivation {
       if sha256 != "" then sha256 else if sha1 != "" then sha1 else md5;
   
   inherit system url curl;
+
+  # No need to double the amount of network traffic
+  preferLocalBuild = true;
+
+  # Don't build in a chroot because Nix's dependencies may not be there.
+  __noChroot = true;
 }