mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
259cf8812b
Dolphin has been GPLv2+ since 2015.
49 lines
1.7 KiB
Nix
49 lines
1.7 KiB
Nix
{ stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, gtk2, glib, libGLU_combined
|
|
, gettext, libpthreadstubs, libXrandr, libXext, readline, openal
|
|
, libXdmcp, portaudio, fetchFromGitHub, libusb, libevdev
|
|
, wxGTK30, soundtouch, miniupnpc, mbedtls, curl, lzo, sfml
|
|
, libpulseaudio ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dolphin-emu-${version}";
|
|
version = "5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dolphin-emu";
|
|
repo = "dolphin";
|
|
rev = version;
|
|
sha256 = "07mlfnh0hwvk6xarcg315x7z2j0qbg9g7cm040df9c8psiahc3g6";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Source/Core/VideoBackends/OGL/RasterFont.cpp \
|
|
--replace " CHAR_WIDTH " " CHARWIDTH "
|
|
'';
|
|
|
|
cmakeFlags = ''
|
|
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include
|
|
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include
|
|
-DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0
|
|
-DENABLE_LTO=True
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cmake bluez ffmpeg libao libGLU_combined gtk2 glib
|
|
gettext libpthreadstubs libXrandr libXext readline openal
|
|
libevdev libXdmcp portaudio libusb libpulseaudio
|
|
libevdev libXdmcp portaudio libusb libpulseaudio
|
|
wxGTK30 soundtouch miniupnpc mbedtls curl lzo sfml ];
|
|
|
|
meta = {
|
|
homepage = https://dolphin-emu.org/;
|
|
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
|
# x86_32 is an unsupported platform.
|
|
# Enable generic build if you really want a JIT-less binary.
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|