about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-05-12 06:12:22 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-05-12 06:12:22 +0200
commit97cd6fc95dba762d646d7693953b396e1b057f41 (patch)
treef485a88539107db6a47e19c4fdfc4fc0d90d55d1 /pkgs/build-support
parent6d823f636947701f98ee5943187f0a99f0827e72 (diff)
channel: Enable preferLocalBuild for mkChannel.
It's kinda pointless to shovel the whole source to a remote machine and
then shovel the whole source back to the Hydra master without doing any
real compiling or other CPU-intensive processing.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/channel.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/build-support/channel.nix b/pkgs/build-support/channel.nix
index 6a03dbc5..a837177f 100644
--- a/pkgs/build-support/channel.nix
+++ b/pkgs/build-support/channel.nix
@@ -4,6 +4,7 @@
 
 stdenv.mkDerivation ({
   inherit name src constituents;
+  preferLocalBuild = true;
   _hydraAggregate = true;
 
   phases = [ "unpackPhase" "patchPhase" "installPhase" ];