3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/emulators/snes9x-gtk/default.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-17 02:30:45 +00:00
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wrapGAppsHook
2020-04-25 21:10:38 +01:00
, SDL2, zlib, gtk3, libxml2, libXv, epoxy, minizip, pulseaudio, portaudio }:
stdenv.mkDerivation rec {
pname = "snes9x-gtk";
2020-04-25 21:10:38 +01:00
version = "1.60";
2017-09-27 01:47:37 +01:00
src = fetchFromGitHub {
owner = "snes9xgit";
repo = "snes9x";
rev = version;
2020-04-25 21:10:38 +01:00
sha256 = "12hpn7zcdvp30ldpw2zf115yjqv55n1ldjbids7vx0lvbpr06dm1";
};
2018-06-16 01:41:48 +01:00
enableParallelBuilding = true;
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ];
2020-04-25 21:10:38 +01:00
buildInputs = [ SDL2 zlib gtk3 libxml2 libXv epoxy minizip pulseaudio portaudio ];
2018-06-16 01:41:48 +01:00
2020-04-25 21:10:38 +01:00
preConfigure = "cd gtk";
meta = with lib; {
homepage = "https://www.snes9x.com";
2018-06-19 07:51:56 +01:00
description = "Super Nintendo Entertainment System (SNES) emulator";
2018-06-16 01:41:48 +01: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 01:41:48 +01:00
# see https://github.com/snes9xgit/snes9x/blob/master/LICENSE for exact details
license = licenses.unfreeRedistributable;
2017-09-27 01:47:37 +01:00
maintainers = with maintainers; [ qknight ];
platforms = platforms.linux;
};
}