summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-09 18:38:52 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-10 11:18:44 -0500
commit7a3a8b852943d400b08ecd28c8392a0b90e79342 (patch)
tree134799abb345af0a0229eb866f4ac89fa1400e7d /pkgs
parent3d59b4d285fa3207af8fc9378da87c1dd8c42d0d (diff)
downloadnixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar.gz
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar.bz2
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar.lz
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar.xz
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.tar.zst
nixpkgs-7a3a8b852943d400b08ecd28c8392a0b90e79342.zip
fetchurl: Should use buildPackages.curl for build-time dep
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index a25521ce537..f3d54104fbd 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -183,7 +183,7 @@ with pkgs;
     inherit stdenv;
     # On darwin, libkrb5 needs bootstrap_cmds which would require
     # converting many packages to fetchurl_boot to avoid evaluation cycles.
-    curl = curl.override (lib.optionalAttrs stdenv.isDarwin { gssSupport = false; });
+    curl = buildPackages.curl.override (lib.optionalAttrs stdenv.isDarwin { gssSupport = false; });
   };
 
   fetchRepoProject = callPackage ../build-support/fetchrepoproject { };