Merge pull request #251808 from tricktron/fix-soapui-darwin

soapui: fix runtime error on darwin
This commit is contained in:
Uri Baghin 2023-08-28 14:09:33 +10:00 committed by GitHub
commit 95b81c96f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13222,7 +13222,9 @@ with pkgs;
};
soapui = callPackage ../applications/networking/soapui {
jdk = jdk11;
jdk = if stdenv.isDarwin
then (jdk11.override { enableJavaFX = true; })
else jdk11;
};
sockdump = callPackage ../tools/networking/sockdump { };