summary refs log tree commit diff
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)
downloadnixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar.gz
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar.bz2
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar.lz
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar.xz
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.tar.zst
nixpkgs-940c4fa3f5c44453f6aaa7eca4ad2f1551a1e21e.zip
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 2542d242885..afbade7c73a 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