mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
fetchurl: Should use buildPackages.curl for build-time dep
This commit is contained in:
parent
3d59b4d285
commit
7a3a8b8529
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user