summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2016-02-25 13:06:40 +0000
committerDomen Kožar <domen@dev.si>2016-02-25 13:06:40 +0000
commit98c16e00fed66f9d8941ca4a8074a7fc714049c7 (patch)
tree362d51c6f6584a50d71efa37b0c6188709d48cc4 /pkgs
parenta68eae786646e3a66b204d6c2f63a3793a2fee49 (diff)
parentde8213bd287b80d564ab9fc62c9c9c20c15bdacb (diff)
downloadnixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar.gz
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar.bz2
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar.lz
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar.xz
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.tar.zst
nixlib-98c16e00fed66f9d8941ca4a8074a7fc714049c7.zip
Merge pull request #13425 from zimbatm/curl-http2-darwin
curl: disable http2 support on Darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index c8390ee8fb5f..d18c582ead40 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1270,6 +1270,7 @@ let
 
   curl = callPackage ../tools/networking/curl rec {
     fetchurl = fetchurlBoot;
+    http2Support = !stdenv.isDarwin;
     zlibSupport = true;
     sslSupport = zlibSupport;
     scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;