summary refs log tree commit diff
path: root/pkgs/stdenv/darwin
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-02-10 19:20:44 +0100
committerVladimír Čunát <vcunat@gmail.com>2018-02-10 19:20:44 +0100
commit03eef817274cb7b49f563277b05950e5ee5c91ea (patch)
treeec3b2caa21caaa372991dbb9500f01385f68026a /pkgs/stdenv/darwin
parent32085eafa1233d67875e49a079ccf83c9adfb712 (diff)
downloadnixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar.gz
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar.bz2
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar.lz
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar.xz
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.tar.zst
nixpkgs-03eef817274cb7b49f563277b05950e5ee5c91ea.zip
darwin bootstrap tools: fix after #34339 (http2 in curl)
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/make-bootstrap-tools.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
index 6fb37f24914..6fc9d7f0c10 100644
--- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
@@ -15,8 +15,8 @@ in rec {
   # Avoid debugging larger changes for now.
   bzip2_ = bzip2.override (args: { linkStatic = true; });
 
-  # Avoid messing with libkrb5.
-  curl_ = curl.override (args: { gssSupport = false; });
+  # Avoid messing with libkrb5 and libnghttp2.
+  curl_ = curl.override (args: { gssSupport = false; http2Support = false; });
 
   build = stdenv.mkDerivation {
     name = "stdenv-bootstrap-tools";