summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorBen Darnell <ben@bendarnell.com>2018-01-27 13:54:19 -0500
committerBen Darnell <ben@bendarnell.com>2018-02-06 21:50:28 -0500
commitc6aa69f48c0e8ec656919c9b7dc8075e68f62979 (patch)
tree5da22034dc16d0943c6a8653dccdfbda7d6aaebf /pkgs/top-level/all-packages.nix
parent355a6ca18971b75219fa6bcf20902a2ac2d9b3e3 (diff)
downloadnixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar.gz
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar.bz2
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar.lz
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar.xz
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.tar.zst
nixlib-c6aa69f48c0e8ec656919c9b7dc8075e68f62979.zip
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.
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index c0db748b4d2b..601a784ce84b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;