summary refs log tree commit diff
path: root/pkgs/build-support/fetchhg
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/fetchhg
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/build-support/fetchhg')
-rw-r--r--pkgs/build-support/fetchhg/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/build-support/fetchhg/default.nix b/pkgs/build-support/fetchhg/default.nix
index 2516f79f65b..36a48ce9f17 100644
--- a/pkgs/build-support/fetchhg/default.nix
+++ b/pkgs/build-support/fetchhg/default.nix
@@ -1,15 +1,15 @@
-{stdenv, mercurial, nix}: {name ? null, url, rev ? null, md5 ? null, sha256 ? null, fetchSubrepos ? false}:
+{stdenvNoCC, mercurial, nix}: {name ? null, url, rev ? null, md5 ? null, sha256 ? null, fetchSubrepos ? false}:
 
 if md5 != null then
   throw "fetchhg does not support md5 anymore, please use sha256"
 else
 # TODO: statically check if mercurial as the https support if the url starts woth https.
-stdenv.mkDerivation {
+stdenvNoCC.mkDerivation {
   name = "hg-archive" + (if name != null then "-${name}" else "");
   builder = ./builder.sh;
   nativeBuildInputs = [mercurial];
 
-  impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
+  impureEnvVars = stdenvNoCC.lib.fetchers.proxyImpureEnvVars;
 
   subrepoClause = if fetchSubrepos then "S" else "";