1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

darwin bootstrap tools: fix after #34339 (http2 in curl)

This commit is contained in:
Vladimír Čunát 2018-02-10 19:20:44 +01:00
parent 32085eafa1
commit 03eef81727
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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";