Commit e1b3ee8b authored by Martino Fontana's avatar Martino Fontana
Browse files

dolphin-emu-beta: fix mainProgram on Linux

parent d234320d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    homepage = "https://dolphin-emu.org";
    description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8";
    mainProgram = "Dolphin";
    mainProgram = if stdenv.hostPlatform.isDarwin then "Dolphin" else "dolphin-emu";
    branch = "master";
    license = licenses.gpl2Plus;
    platforms = platforms.unix;