dolphin-emu: 4.0.2 -> 5.0
This commit is contained in:
parent
ce5c51b406
commit
7129ebbd5e
@ -1,13 +1,17 @@
|
|||||||
{ stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib
|
{ stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib
|
||||||
, gettext, libpthreadstubs, libXrandr, libXext, readline
|
, gettext, libpthreadstubs, libXrandr, libXext, readline, openal
|
||||||
, openal, libXdmcp, portaudio, SDL, wxGTK30, fetchurl
|
, libXdmcp, portaudio, fetchFromGitHub, libusb, libevdev
|
||||||
, libpulseaudio ? null }:
|
, libpulseaudio ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "dolphin-emu-4.0.2";
|
name = "dolphin-emu-${version}";
|
||||||
src = fetchurl {
|
version = "5.0";
|
||||||
url = https://github.com/dolphin-emu/dolphin/archive/4.0.2.tar.gz;
|
|
||||||
sha256 = "0a8ikcxdify9d7lqz8fn2axk2hq4q1nvbcsi1b8vb9z0mdrhzw89";
|
src = fetchFromGitHub {
|
||||||
|
owner = "dolphin-emu";
|
||||||
|
repo = "dolphin";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "07mlfnh0hwvk6xarcg315x7z2j0qbg9g7cm040df9c8psiahc3g6";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = ''
|
cmakeFlags = ''
|
||||||
@ -22,14 +26,15 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib
|
buildInputs = [ pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib
|
||||||
gettext libpthreadstubs libXrandr libXext readline openal
|
gettext libpthreadstubs libXrandr libXext readline openal
|
||||||
libXdmcp portaudio SDL wxGTK30 libpulseaudio ];
|
libevdev libXdmcp portaudio libusb libpulseaudio ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://dolphin-emu.org/;
|
homepage = http://dolphin-emu.org/;
|
||||||
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARM";
|
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARM";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
maintainers = with stdenv.lib.maintainers; [ MP2E ];
|
||||||
broken = true;
|
# x86_32 is an unsupported platform.
|
||||||
|
# Enable generic build if you really want a JIT-less binary.
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user