wine64Packages.minimal: mark broken on Darwin

Darwin requires MinGW to build Wine because clang does not support
`-mabi=ms`, which is required when building without MinGW .
This commit is contained in:
Randy Eckenrode 2023-11-18 10:38:32 -05:00
parent fc2852466d
commit bf7ad8cfbf
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -207,6 +207,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
fromSource
binaryNativeCode # mono, gecko
];
broken = stdenv.isDarwin && !supportFlags.mingwSupport;
description = if supportFlags.waylandSupport then "An Open Source implementation of the Windows API on top of OpenGL and Unix (with experimental Wayland support)" else "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms;
maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira reckenrode ];