curl: disable gss on windows

This commit is contained in:
Matthew Bauer 2018-10-17 13:44:41 -05:00
parent a7c8e30782
commit c86495c798

View file

@ -2075,7 +2075,7 @@ with pkgs;
zlibSupport = true;
sslSupport = zlibSupport;
scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;
gssSupport = true;
gssSupport = !stdenv.hostPlatform.isWindows;
};
curl = callPackage ../tools/networking/curl rec {
@ -2084,7 +2084,7 @@ with pkgs;
zlibSupport = true;
sslSupport = zlibSupport;
scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;
gssSupport = true;
gssSupport = !stdenv.hostPlatform.isWindows;
};
curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { };