Skip to content

Commit 130ed4b

Browse files
committed
refactor: Explicitly exclude curl options
1 parent e592d72 commit 130ed4b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cross-windows.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ let tool-version-map = import ./tool-map.nix;
66
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);
77
# Exclude zstd support for now, since it's currently broken on mingw32W64:
88
# https://github.com/NixOS/nixpkgs/issues/333338
9-
curl = pkgs.curlMinimal;
9+
curl = pkgs.curl.override ({
10+
zstdSupport = false;
11+
pslSupport = false;
12+
});
1013
inherit (pkgs.haskell-nix.iserv-proxy-exes.${compiler-nix-name}) iserv-proxy iserv-proxy-interpreter;
1114

1215
dllPkgs = [

0 commit comments

Comments
 (0)