curl: enable gssSupport in non-fetchurl builds

This commit is contained in:
Spencer Baugh
2017-10-08 20:45:58 +00:00
parent 75353853fc
commit 68432fd1c9
+3 -1
View File
@@ -179,7 +179,8 @@ with pkgs;
# `fetchurl' downloads a file from the network. # `fetchurl' downloads a file from the network.
fetchurl = import ../build-support/fetchurl { fetchurl = import ../build-support/fetchurl {
inherit curl stdenv; inherit stdenv;
curl = curl.override { gssSupport = false; };
}; };
fetchRepoProject = callPackage ../build-support/fetchrepoproject { }; fetchRepoProject = callPackage ../build-support/fetchrepoproject { };
@@ -1613,6 +1614,7 @@ with pkgs;
zlibSupport = true; zlibSupport = true;
sslSupport = zlibSupport; sslSupport = zlibSupport;
scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin; scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;
gssSupport = true;
}; };
curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { }; curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { };