From c722193a91cb32f2696d655cf6301cf5ccfae6ce Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 26 Apr 2012 16:52:08 +0200 Subject: [PATCH] Don't use the build hook for unpacking channels --- corepkgs/unpack-channel.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/corepkgs/unpack-channel.nix b/corepkgs/unpack-channel.nix index 170f3ab07c..0fc2b2f456 100644 --- a/corepkgs/unpack-channel.nix +++ b/corepkgs/unpack-channel.nix @@ -8,4 +8,6 @@ derivation { args = [ "-e" ./unpack-channel.sh ]; inherit name channelName src bzip2 tar tr; PATH = "${nixBinDir}:${coreutils}"; + # No point in doing this remotely. + preferLocalBuild = true; }