diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-26T14·52+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-04-26T14·52+0200 |
commit | c722193a91cb32f2696d655cf6301cf5ccfae6ce (patch) | |
tree | 4896bacc5fab4e91aa12373756f175d4a55e9426 /corepkgs | |
parent | 6de5d534164d95b0c004cd4b2ed9bf97f9903029 (diff) |
Don't use the build hook for unpacking channels
Diffstat (limited to 'corepkgs')
-rw-r--r-- | corepkgs/unpack-channel.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/corepkgs/unpack-channel.nix b/corepkgs/unpack-channel.nix index 170f3ab07c77..0fc2b2f456c4 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; } |