summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2023-07-21 19:22:50 -0400
committerAndrew Marshall <andrew@johnandrewmarshall.com>2023-07-22 14:08:32 -0400
commitd746f25d19551a98a7890045bc5896c91346360e (patch)
treeadd6d71217f1d00d517e097421a8deede4b91e00
parentf18b8ec8c6924dc8395b0d865420f5dfe5d9fd9e (diff)
downloadnixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar.gz
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar.bz2
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar.lz
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar.xz
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.tar.zst
nixpkgs-d746f25d19551a98a7890045bc5896c91346360e.zip
curl: Fix cross-compilation to Windows by not forcing gssSupport
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.
-rw-r--r--pkgs/top-level/all-packages.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 951b7b41e4d..7cf2310d1c5 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7001,7 +7001,6 @@ with pkgs;
     idnSupport = true;
     zstdSupport = true;
   } // lib.optionalAttrs (!stdenv.hostPlatform.isStatic) {
-    gssSupport = true;
     brotliSupport = true;
   });