summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2016-02-24 14:35:34 +0000
committerzimbatm <zimbatm@zimbatm.com>2016-02-24 14:35:34 +0000
commitde8213bd287b80d564ab9fc62c9c9c20c15bdacb (patch)
treea04225c99b5ef8020ffcc2b18b64398be7ddc96b /pkgs
parentb05708ba0e39b0c777beb5a3015d1b5e5f057570 (diff)
downloadnixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar.gz
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar.bz2
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar.lz
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar.xz
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.tar.zst
nixlib-de8213bd287b80d564ab9fc62c9c9c20c15bdacb.zip
curl: disable http2 support on Darwin
Should fix https://hydra.nixos.org/build/32265403/nixlog/12
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 37f1098a823c..15b9862e390c 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;