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:
Ben Darnell 2018-01-27 13:54:19 -05:00
parent 355a6ca189
commit c6aa69f48c

View file

@ -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;