summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRandy Eckenrode <randy@largeandhighquality.com>2023-11-18 10:38:32 -0500
committerRandy Eckenrode <randy@largeandhighquality.com>2023-11-18 10:44:39 -0500
commitbf7ad8cfbfa102a90463433e2c5027573b462479 (patch)
tree1711ce6e3e13917b82c08b5156c58878182c8766 /pkgs/applications
parentfc2852466d8c28b4757cf51789cfd19353880d2e (diff)
downloadnixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar.gz
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar.bz2
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar.lz
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar.xz
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.tar.zst
nixpkgs-bf7ad8cfbfa102a90463433e2c5027573b462479.zip
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 .
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/emulators/wine/base.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/wine/base.nix b/pkgs/applications/emulators/wine/base.nix
index bb44f186cff..68814ca5ba5 100644
--- a/pkgs/applications/emulators/wine/base.nix
+++ b/pkgs/applications/emulators/wine/base.nix
@@ -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 ];