mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
snes9x-gtk: 1.57 -> 1.60 (#85910)
This commit is contained in:
parent
c5e8985fd7
commit
d13a19cfba
|
@ -1,25 +1,22 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, wrapGAppsHook, intltool, pkgconfig
|
||||
, SDL2, zlib, gtk3, libxml2, libXv, epoxy, minizip, portaudio }:
|
||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
|
||||
, SDL2, zlib, gtk3, libxml2, libXv, epoxy, minizip, pulseaudio, portaudio }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snes9x-gtk";
|
||||
version = "1.57";
|
||||
version = "1.60";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "snes9xgit";
|
||||
repo = "snes9x";
|
||||
rev = version;
|
||||
sha256 = "1jcvj2l03b98iz6aq4x747vfz7i6h6j339z4brj4vz71s11vn31a";
|
||||
sha256 = "12hpn7zcdvp30ldpw2zf115yjqv55n1ldjbids7vx0lvbpr06dm1";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
nativeBuildInputs = [ autoreconfHook wrapGAppsHook intltool pkgconfig ];
|
||||
buildInputs = [ SDL2 zlib gtk3 libxml2 libXv epoxy minizip portaudio ];
|
||||
nativeBuildInputs = [ meson ninja pkgconfig ];
|
||||
buildInputs = [ SDL2 zlib gtk3 libxml2 libXv epoxy minizip pulseaudio portaudio ];
|
||||
|
||||
preAutoreconf = ''
|
||||
cd gtk
|
||||
intltoolize
|
||||
'';
|
||||
preConfigure = "cd gtk";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.snes9x.com";
|
||||
|
|
Loading…
Reference in a new issue