File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 32
32
PORT=$((5000 + $RANDOM % 5000))
33
33
(>&2 echo "---> Starting ${ interpreter . exeName } on port $PORT")
34
34
${ 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 {
42
36
setupBuildFlags = [ "--ghc-option=-optl-static" ] ++ lib . optional hostPlatform . isAarch32 "--ghc-option=-optl-no-pie" ;
43
37
enableDebugRTS = true ;
44
38
} ) } /bin/${ interpreter . exeName } tmp $PORT $ISERV_ARGS &
You can’t perform that action at this time.
0 commit comments