Skip to content

Commit

Permalink
refactor: Explicitly exclude curl options
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillespie committed Oct 11, 2024
1 parent e592d72 commit 130ed4b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cross-windows.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ let tool-version-map = import ./tool-map.nix;
compiler-not-in = compiler-list: name: (if __elem compiler-nix-name compiler-list then __trace "No ${name}. Not yet compatible with ${compiler-nix-name}" false else true);
# Exclude zstd support for now, since it's currently broken on mingw32W64:
# https://github.com/NixOS/nixpkgs/issues/333338
curl = pkgs.curlMinimal;
curl = pkgs.curl.override ({
zstdSupport = false;
pslSupport = false;
});
inherit (pkgs.haskell-nix.iserv-proxy-exes.${compiler-nix-name}) iserv-proxy iserv-proxy-interpreter;

dllPkgs = [
Expand Down

0 comments on commit 130ed4b

Please sign in to comment.