darwin/make-bootstrap-tools: avoid brotli dependency

Needed as of e3d19670a0
This commit is contained in:
Ryan Burns 2021-03-18 12:27:49 -07:00
parent 2445e9a681
commit bcd7b0dd5d

View file

@ -18,7 +18,7 @@ in rec {
bzip2_ = bzip2.override (args: { linkStatic = true; });
# Avoid messing with libkrb5 and libnghttp2.
curl_ = curl.override (args: { gssSupport = false; http2Support = false; });
curl_ = curlMinimal.override (args: { gssSupport = false; http2Support = false; });
build = stdenv.mkDerivation {
name = "stdenv-bootstrap-tools";