retroarch: fix build on macOS, mark as broken

With those changes retroarch builds on Darwin, but the executable itself
is broken.

+5 -1
+5 -1
pkgs/misc/emulators/retroarch/default.nix
··· 68 68 --replace "@libretro_info_path@" "$out/share/libretro/info" 69 69 ''; 70 70 71 - nativeBuildInputs = [ pkg-config wayland ] ++ 71 + nativeBuildInputs = [ pkg-config ] ++ 72 + optional stdenv.isLinux wayland ++ 72 73 optional withVulkan makeWrapper; 73 74 74 75 buildInputs = [ ffmpeg freetype libxml2 libGLU libGL python3 SDL2 which ] ++ ··· 109 110 license = licenses.gpl3Plus; 110 111 platforms = platforms.all; 111 112 maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ]; 113 + # FIXME: exits with error on macOS: 114 + # No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting 115 + broken = stdenv.isDarwin; 112 116 }; 113 117 }