summaryrefslogtreecommitdiffstats
path: root/pkgs/stdenv/darwin
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/stdenv/darwin
parent7a3a8b852943d400b08ecd28c8392a0b90e79342 (diff)
treewide: Fetchers should use `stdenvNoCC`.
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix
index 2542d2428859..afbade7c73a4 100644
--- a/pkgs/stdenv/darwin/default.nix
+++ b/pkgs/stdenv/darwin/default.nix
@@ -118,8 +118,8 @@ in rec {
initialPath = [ bootstrapTools ];
fetchurlBoot = import ../../build-support/fetchurl {
- stdenv = stage0.stdenv;
- curl = bootstrapTools;
+ stdenvNoCC = stage0.stdenv;
+ curl = bootstrapTools;
};
# The stdenvs themselves don't use mkDerivation, so I need to specify this here