curl: disable gss on windows
This commit is contained in:
parent
a7c8e30782
commit
c86495c798
@ -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 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user