Skip to content

Commit

Permalink
darwin bootstrap tools: fix after #34339 (http2 in curl)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Feb 10, 2018
1 parent 32085ea commit 03eef81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/stdenv/darwin/make-bootstrap-tools.nix
Expand Up @@ -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";
Expand Down

0 comments on commit 03eef81

Please sign in to comment.