about summary refs log tree commit diff
path: root/pkgs/stdenv
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-11-07 03:49:21 +0200
committerGitHub <noreply@github.com>2023-11-07 03:49:21 +0200
commitfbb3ff5e1228d8d54c4cdf40302e4193a15e8648 (patch)
treedc760d6b247405074c8fc3b7c604917ec3844775 /pkgs/stdenv
parent5a803b4198b59d6bd6f983f77307618e4f25af12 (diff)
parentef4c88d1f67efe6a36b40119ebf11ff134f40724 (diff)
Merge pull request #243161 from nh2/more-enableStatic
Diffstat (limited to 'pkgs/stdenv')
-rw-r--r--pkgs/stdenv/darwin/make-bootstrap-tools.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
index 448d6ecd9f179..deda9b052e53d 100644
--- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix
+++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix
@@ -28,7 +28,7 @@ in rec {
   cctools_ = darwin.cctools;
 
   # Avoid debugging larger changes for now.
-  bzip2_ = bzip2.override (args: { linkStatic = true; });
+  bzip2_ = bzip2.override (args: { enableStatic = true; enableShared = false; });
 
   # Avoid messing with libkrb5 and libnghttp2.
   curl_ = curlMinimal.override (args: { gssSupport = false; http2Support = false; });