aboutsummaryrefslogtreecommitdiff
path: root/pkgs/build-support/fetchgx
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-09 18:38:19 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-10 11:18:44 -0500
commit940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e (patch)
tree1ab7a3b8c26a2a93b442c14a43495f49664c1df2 /pkgs/build-support/fetchgx
parent7a3a8b852943d400b08ecd28c8392a0b90e79342 (diff)
treewide: Fetchers should use `stdenvNoCC`.
Diffstat (limited to 'pkgs/build-support/fetchgx')
-rw-r--r--pkgs/build-support/fetchgx/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/fetchgx/default.nix b/pkgs/build-support/fetchgx/default.nix
index 6930ca6734a0..c8c643182231 100644
--- a/pkgs/build-support/fetchgx/default.nix
+++ b/pkgs/build-support/fetchgx/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, gx, gx-go, go, cacert }:
+{ stdenvNoCC, gx, gx-go, go, cacert }:
{ name, src, sha256 }:
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
name = "${name}-gxdeps";
inherit src;