curl: Enable http2Support for darwin
http2Support was disabled due to a bootstrapping issue involving xz. Now that xz is available in the bootstrap environment for all platforms, http2Support can be enabled globally.
This commit is contained in:
parent
355a6ca189
commit
c6aa69f48c
1 changed files with 1 additions and 1 deletions
|
@ -1719,7 +1719,7 @@ with pkgs;
|
|||
|
||||
curl = callPackage ../tools/networking/curl rec {
|
||||
fetchurl = fetchurlBoot;
|
||||
http2Support = !stdenv.isDarwin;
|
||||
http2Support = true;
|
||||
zlibSupport = true;
|
||||
sslSupport = zlibSupport;
|
||||
scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;
|
||||
|
|
Loading…
Reference in a new issue