2018-06-19 08:51:56 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, wrapGAppsHook, intltool, pkgconfig
|
|
|
|
, SDL2, zlib, gtk3, libxml2, libXv, epoxy, minizip, portaudio }:
|
2014-07-20 10:39:42 +02:00
|
|
|
|
2014-07-27 21:37:52 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "snes9x-gtk-${version}";
|
2018-06-27 16:59:13 +02:00
|
|
|
version = "1.56.2";
|
2014-07-20 10:39:42 +02:00
|
|
|
|
2017-09-27 02:47:37 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "snes9xgit";
|
|
|
|
repo = "snes9x";
|
|
|
|
rev = version;
|
2018-06-27 16:59:13 +02:00
|
|
|
sha256 = "0cbv95799gpagf6bxs1fmwmxvz5qs9g2rmmf5fsdd1cb4lryaijr";
|
2014-07-20 10:39:42 +02:00
|
|
|
};
|
|
|
|
|
2018-06-16 02:41:48 +02:00
|
|
|
enableParallelBuilding = true;
|
2018-06-19 08:51:56 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook wrapGAppsHook intltool pkgconfig ];
|
2018-06-16 02:41:48 +02:00
|
|
|
buildInputs = [ SDL2 zlib gtk3 libxml2 libXv epoxy minizip portaudio ];
|
|
|
|
|
|
|
|
preAutoreconf = ''
|
|
|
|
cd gtk
|
|
|
|
intltoolize
|
|
|
|
'';
|
2014-07-20 10:39:42 +02:00
|
|
|
|
2017-09-27 02:47:37 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-06-16 02:41:48 +02:00
|
|
|
homepage = "http://www.snes9x.com";
|
2018-06-19 08:51:56 +02:00
|
|
|
description = "Super Nintendo Entertainment System (SNES) emulator";
|
2018-06-16 02:41:48 +02:00
|
|
|
|
2016-08-02 18:38:04 +02:00
|
|
|
longDescription = ''
|
|
|
|
Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES)
|
|
|
|
emulator. It basically allows you to play most games designed for the SNES
|
|
|
|
and Super Famicom Nintendo game systems on your PC or Workstation; which
|
|
|
|
includes some real gems that were only ever released in Japan.
|
|
|
|
'';
|
2018-06-16 02:41:48 +02:00
|
|
|
|
2017-09-27 02:47:37 +02:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
platforms = platforms.linux;
|
2014-07-20 10:39:42 +02:00
|
|
|
};
|
|
|
|
}
|