mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
38 lines
1.3 KiB
Nix
38 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wrapGAppsHook, alsa-lib
|
|
, SDL2, zlib, gtkmm3, libXv, libepoxy, minizip, pulseaudio, portaudio }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snes9x-gtk";
|
|
version = "1.61";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snes9xgit";
|
|
repo = "snes9x";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
sha256 = "1kay7aj30x0vn8rkylspdycydrzsc0aidjbs0dd238hr5hid723b";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ];
|
|
buildInputs = [ alsa-lib SDL2 zlib gtkmm3 libXv libepoxy minizip pulseaudio portaudio ];
|
|
|
|
preConfigure = "cd gtk";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.snes9x.com";
|
|
description = "Super Nintendo Entertainment System (SNES) emulator";
|
|
|
|
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.
|
|
'';
|
|
|
|
# see https://github.com/snes9xgit/snes9x/blob/master/LICENSE for exact details
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ qknight xfix ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|