79 lines
2.8 KiB
Nix
79 lines
2.8 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake
|
|
, wrapQtAppsHook, qtbase, bluez, ffmpeg, libao, libGLU, libGL, pcre, gettext
|
|
, libXrandr, libusb1, lzo, libpthreadstubs, libXext, libXxf86vm, libXinerama
|
|
, libSM, libXdmcp, readline, openal, udev, libevdev, portaudio, curl, alsa-lib
|
|
, miniupnpc, enet, mbedtls, soundtouch, sfml
|
|
, vulkan-loader ? null, libpulseaudio ? null
|
|
|
|
# - Inputs used for Darwin
|
|
, CoreBluetooth, ForceFeedback, IOKit, OpenGL, libpng, hidapi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dolphin-emu";
|
|
version = "5.0-15260";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dolphin-emu";
|
|
repo = "dolphin";
|
|
rev = "207c931a04c8e2629a735bc2b3f36b5c89365ca7";
|
|
sha256 = "15r9syk7f62h16klcznw7css6sng8nqkkz4d1qr8d988rdfaiypx";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ]
|
|
++ lib.optional stdenv.isLinux wrapQtAppsHook;
|
|
|
|
buildInputs = [
|
|
curl ffmpeg libao libGLU libGL pcre gettext libpthreadstubs libpulseaudio
|
|
libXrandr libXext libXxf86vm libXinerama libSM readline openal libXdmcp lzo
|
|
portaudio libusb1 libpng hidapi miniupnpc enet mbedtls soundtouch sfml
|
|
qtbase
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
bluez udev libevdev alsa-lib vulkan-loader
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
CoreBluetooth OpenGL ForceFeedback IOKit
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_SHARED_ENET=ON"
|
|
"-DENABLE_LTO=ON"
|
|
"-DDOLPHIN_WC_REVISION=${src.rev}"
|
|
"-DDOLPHIN_WC_DESCRIBE=${version}"
|
|
"-DDOLPHIN_WC_BRANCH=master"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"-DOSX_USE_DEFAULT_SEARCH_PATH=True"
|
|
];
|
|
|
|
qtWrapperArgs = lib.optionals stdenv.isLinux [
|
|
"--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib"
|
|
# https://bugs.dolphin-emu.org/issues/11807
|
|
# The .desktop file should already set this, but Dolphin may be launched in other ways
|
|
"--set QT_QPA_PLATFORM xcb"
|
|
];
|
|
|
|
# - Allow Dolphin to use nix-provided libraries instead of building them
|
|
postPatch = ''
|
|
sed -i -e 's,DISTRIBUTOR "None",DISTRIBUTOR "NixOS",g' CMakeLists.txt
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
sed -i -e 's,if(NOT APPLE),if(true),g' CMakeLists.txt
|
|
sed -i -e 's,if(LIBUSB_FOUND AND NOT APPLE),if(LIBUSB_FOUND),g' \
|
|
CMakeLists.txt
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
install -D $src/Data/51-usb-device.rules $out/etc/udev/rules.d/51-usb-device.rules
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://dolphin-emu.org";
|
|
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ MP2E ashkitten ];
|
|
branch = "master";
|
|
# x86_32 is an unsupported platform.
|
|
# Enable generic build if you really want a JIT-less binary.
|
|
broken = stdenv.isDarwin;
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
}
|