Skip to content

Commit

Permalink
curl: allow static builds on x86_64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
reckenrode committed Oct 10, 2024
1 parent e694240 commit 2ab1817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/networking/curl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [ lovek323 ];
platforms = lib.platforms.all;
# Fails to link against static brotli or gss
broken = stdenv.hostPlatform.isStatic && (brotliSupport || gssSupport || stdenv.hostPlatform.system == "x86_64-darwin");
broken = stdenv.hostPlatform.isStatic && (brotliSupport || gssSupport);
pkgConfigModules = [ "libcurl" ];
mainProgram = "curl";
};
Expand Down

0 comments on commit 2ab1817

Please sign in to comment.