nixpkgs/pkgs/misc/emulators/fs-uae/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU_combined, lua, freetype, libmpeg2, zip }:
with stdenv.lib;
2016-10-10 20:37:11 +00:00
stdenv.mkDerivation rec {
pname = "fs-uae";
2019-10-12 16:34:11 +00:00
version = "3.0.0";
src = fetchurl {
2019-10-12 16:34:11 +00:00
url = "https://fs-uae.net/stable/${version}/${pname}-${version}.tar.gz";
sha256 = "0r69i6rh472lj4qwqfcfh17xmlw4x6mhqzr9hhpkbb4byyw6h592";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU_combined lua freetype libmpeg2 zip ];
meta = {
description = "An accurate, customizable Amiga Emulator";
longDescription = ''
FS-UAE integrates the most accurate Amiga emulation code available
from WinUAE. FS-UAE emulates A500, A500+, A600, A1200, A1000, A3000
and A4000 models, but you can tweak the hardware configuration and
create customized Amigas.
'';
license = licenses.gpl2Plus;
2018-06-23 11:34:55 +00:00
homepage = https://fs-uae.net;
2016-10-10 20:37:11 +00:00
maintainers = with stdenv.lib; [ maintainers.AndersonTorres ];
2017-09-10 14:51:23 +00:00
platforms = [ "i686-linux" "x86_64-linux" ];
};
}
2015-07-15 12:28:13 +00:00
# TODO: testing and Python GUI support