From 76775985ce737a5934d51144c8d45a62e76ddf25 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Fri, 21 Jul 2023 19:22:50 -0400 Subject: [PATCH] curl: Fix cross-compilation to Windows by not forcing gssSupport MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit E.g. `nix build .#pkgsCross.mingwW64.curl` would fail. The params for curl already have `gssSupport = !isStatic && …`, so removing this doesn’t really have any effect since it’s already `true` when possible and `false` for static platforms. (cherry picked from commit d746f25d19551a98a7890045bc5896c91346360e) --- pkgs/top-level/all-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b04133c4df57..d91354a6156e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6706,7 +6706,6 @@ with pkgs; idnSupport = true; zstdSupport = true; } // lib.optionalAttrs (!stdenv.hostPlatform.isStatic) { - gssSupport = true; brotliSupport = true; });