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 .

+1
+1
pkgs/applications/emulators/wine/base.nix
··· 207 207 fromSource 208 208 binaryNativeCode # mono, gecko 209 209 ]; 210 + broken = stdenv.isDarwin && !supportFlags.mingwSupport; 210 211 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"; 211 212 platforms = if supportFlags.waylandSupport then (lib.remove "x86_64-darwin" prevPlatforms) else prevPlatforms; 212 213 maintainers = with lib.maintainers; [ avnik raskin bendlas jmc-figueira reckenrode ];