mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
545f8e8c6c
also dolphinEmu and dolphinEmuMaster had an extraneous stdenv removed from buildInputs
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib
|
|
, gettext, git, libpthreadstubs, libXrandr, libXext, readline
|
|
, openal, libXdmcp, portaudio, SDL, wxGTK30, fetchgit
|
|
, pulseaudio ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dolphin-emu-20141101";
|
|
src = fetchgit {
|
|
url = git://github.com/dolphin-emu/dolphin.git;
|
|
rev = "9daaf94f3c8caf71dab16c7e591ce7905c1416c4";
|
|
sha256 = "1n71by34mrgdxcr8c5bsbpy9azi62512knp5sjgzq6sfwzgy40d8";
|
|
fetchSubmodules = false;
|
|
};
|
|
|
|
cmakeFlags = ''
|
|
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include
|
|
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include
|
|
-DGTK2_INCLUDE_DIRS=${gtk2}/include/gtk-2.0
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DENABLE_LTO=True
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib
|
|
gettext libpthreadstubs libXrandr libXext readline openal
|
|
git libXdmcp portaudio SDL wxGTK30 pulseaudio ];
|
|
|
|
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 ];
|
|
};
|
|
}
|