mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #3933 from MP2E/dolphin-emu
add dolphinEmu and dolphinEmuMaster
This commit is contained in:
commit
73778e3eff
33
pkgs/misc/emulators/dolphin-emu/default.nix
Normal file
33
pkgs/misc/emulators/dolphin-emu/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib
|
||||
, gettext, git, libpthreadstubs, libXrandr, libXext, readline
|
||||
, openal, libXdmcp, portaudio, SDL, wxGTK30, fetchurl
|
||||
, pulseaudio ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dolphin-emu-4.0.2";
|
||||
src = fetchurl {
|
||||
url = https://github.com/dolphin-emu/dolphin/archive/4.0.2.tar.gz;
|
||||
sha256 = "0a8ikcxdify9d7lqz8fn2axk2hq4q1nvbcsi1b8vb9z0mdrhzw89";
|
||||
};
|
||||
|
||||
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 = [ stdenv 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 ];
|
||||
};
|
||||
}
|
34
pkgs/misc/emulators/dolphin-emu/master.nix
Normal file
34
pkgs/misc/emulators/dolphin-emu/master.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ 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-20140902";
|
||||
src = fetchgit {
|
||||
url = git://github.com/dolphin-emu/dolphin.git;
|
||||
rev = "cc6db8cf26c1508ae382912bc25e64aaf12e0543";
|
||||
sha256 = "17pc4kk1v0p1llc12ifih02j2klfjz29qh8nhz5lapb0a1wr6lb3";
|
||||
};
|
||||
|
||||
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 = [ stdenv 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 ];
|
||||
};
|
||||
}
|
@ -933,6 +933,9 @@ let
|
||||
|
||||
dotnetfx40 = callPackage ../development/libraries/dotnetfx40 { };
|
||||
|
||||
dolphinEmu = callPackage ../misc/emulators/dolphin-emu { };
|
||||
dolphinEmuMaster = callPackage ../misc/emulators/dolphin-emu/master.nix { };
|
||||
|
||||
dropbear = callPackage ../tools/networking/dropbear { };
|
||||
|
||||
dtach = callPackage ../tools/misc/dtach { };
|
||||
|
Loading…
Reference in New Issue
Block a user