about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-08-13 18:19:03 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-14 01:49:43 +0000
commit6dfe73079d0721261a3ba916729315424c6d7ce9 (patch)
tree54ef29cdc3a0e18be6608a5e5c3e14c27ae9fac5 /pkgs/applications/emulators
parent6ec3610cd8926d89c42ce657c00425e5872d8855 (diff)
uxn: mark as broken on Darwin
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/uxn/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/uxn/default.nix b/pkgs/applications/emulators/uxn/default.nix
index 66df76e1bac04..03b1fa6beb78a 100644
--- a/pkgs/applications/emulators/uxn/default.nix
+++ b/pkgs/applications/emulators/uxn/default.nix
@@ -65,5 +65,9 @@ stdenv.mkDerivation (finalAttrs: {
     maintainers = with lib.maintainers; [ AndersonTorres ];
     mainProgram = "uxnemu";
     inherit (SDL2.meta) platforms;
+    # ofborg complains about an error trying to link inexistent SDL2 library
+    # For full logs, run:
+    # 'nix log /nix/store/bmyhh0lpifl9swvkpflqldv43vcrgci1-uxn-unstable-2023-08-10.drv'.
+    broken = stdenv.isDarwin;
   };
 })