Skip to content

Commit 12b7e01

Browse files
committed
patch interpreter also for windows.
1 parent 8ccbc65 commit 12b7e01

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

overlays/mingw_w64.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ let
3434
PORT=$((5000 + $RANDOM % 5000))
3535
(>&2 echo "---> Starting ${interpreter.exeName} on port $PORT")
3636
REMOTE_ISERV=$(mktemp -d)
37-
ln -s ${interpreter.override { enableDebugRTS = true; }}/bin/* $REMOTE_ISERV
37+
ln -s ${interpreter.override
38+
{
39+
patches = [ ./patches/iserv-proxy-keep-cafs.patch ]
40+
;
41+
enableDebugRTS = true;
42+
}}/bin/* $REMOTE_ISERV
3843
# See coment in comp-builder.nix for where this comes from and why it's here
3944
# TODO use `LINK_DLL_FOLDERS` here once it is in all the nixpkgs we want to support.
4045
for p in $pkgsHostTargetAsString; do

0 commit comments

Comments
 (0)