2016-07-07 11:30:36 +02:00
|
|
|
{ stdenv, gcc, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib
|
2017-07-08 23:22:38 +02:00
|
|
|
, pcre, gettext, libpthreadstubs, libXrandr, libXext, libSM, readline
|
|
|
|
, openal, libXdmcp, portaudio, fetchFromGitHub, libusb, libevdev
|
2015-05-27 21:42:15 +02:00
|
|
|
, libpulseaudio ? null }:
|
2014-09-02 10:19:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-02 12:57:10 +02:00
|
|
|
name = "dolphin-emu-20170902";
|
2017-07-08 23:22:38 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dolphin-emu";
|
|
|
|
repo = "dolphin";
|
2017-09-02 12:57:10 +02:00
|
|
|
rev = "b073db51e5f3df8c9890e09a3f4f8a2276c31e3f";
|
|
|
|
sha256 = "0pr5inkd7swc6s7im7axhvmkdbqidhrha2wpflnr25aiwq0dzm10";
|
2014-09-02 10:19:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = ''
|
2016-04-14 03:11:58 +02:00
|
|
|
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include
|
|
|
|
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include
|
2016-04-16 19:34:51 +02:00
|
|
|
-DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0
|
2014-09-02 10:19:44 +02:00
|
|
|
-DENABLE_LTO=True
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gcc cmake bluez ffmpeg libao mesa gtk2 glib pcre
|
2017-07-08 23:22:38 +02:00
|
|
|
gettext libpthreadstubs libXrandr libXext libSM readline openal
|
|
|
|
libevdev libXdmcp portaudio libusb libpulseaudio ];
|
2014-09-02 10:19:44 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://dolphin-emu.org/;
|
|
|
|
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARM";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
2014-12-10 15:43:15 +01:00
|
|
|
# x86_32 is an unsupported platform.
|
|
|
|
# Enable generic build if you really want a JIT-less binary.
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-09-02 10:19:44 +02:00
|
|
|
};
|
|
|
|
}
|