Skip to content

Commit 1b3373f

Browse files
committed
Drop duplicates.
1 parent a1b7204 commit 1b3373f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

overlays/linux-cross.nix

+1-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,7 @@ let
3232
PORT=$((5000 + $RANDOM % 5000))
3333
(>&2 echo "---> Starting ${interpreter.exeName} on port $PORT")
3434
${qemu}/bin/qemu-${qemuSuffix} ${interpreter.override
35-
({
36-
patches = lib.optional (builtins.compareVersions interpreter.version "9.0" > 0) ./patches/iserv-proxy-keep-cafs.patch
37-
++ lib.optional (builtins.compareVersions interpreter.version "9.0" > 0 && hostPlatform.isAndroid && hostPlatform.isAarch32) ./patches/iserv-proxy-interpreter-9.3-android32.patch
38-
++ lib.optional (builtins.compareVersions interpreter.version "9.0" > 0 && hostPlatform.isAndroid && hostPlatform.isAarch64) ./patches/iserv-proxy-interpreter-9.3-android.patch
39-
++ lib.optional (builtins.compareVersions interpreter.version "9.0" > 0 && hostPlatform.isMusl && hostPlatform.isAarch64) ./patches/iserv-proxy-interpreter-9.3-musl.patch
40-
;
41-
} // lib.optionalAttrs hostPlatform.isAndroid {
35+
(lib.optionalAttrs hostPlatform.isAndroid {
4236
setupBuildFlags = ["--ghc-option=-optl-static" ] ++ lib.optional hostPlatform.isAarch32 "--ghc-option=-optl-no-pie";
4337
enableDebugRTS = true;
4438
})}/bin/${interpreter.exeName} tmp $PORT $ISERV_ARGS &

0 commit comments

Comments
 (0)