2014-12-27 16:58:09 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2018-02-24 13:12:44 +00:00
|
|
|
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU_combined, lua, freetype, libmpeg2, zip }:
|
2014-12-27 16:58:09 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-10-10 21:37:11 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-27 16:58:09 +00:00
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fs-uae";
|
2018-04-17 16:43:58 +01:00
|
|
|
version = "2.8.4";
|
2014-12-27 16:58:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://fs-uae.net/fs-uae/stable/${version}/${pname}-${version}.tar.gz";
|
2018-04-17 16:43:58 +01:00
|
|
|
sha256 = "19ccb3gbpjwwazqc9pyin3jicjl27m2gyvy5bb5zysq0mxpzassj";
|
2014-12-27 16:58:09 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 13:12:44 +00:00
|
|
|
buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU_combined lua freetype libmpeg2 zip ];
|
2014-12-27 16:58:09 +00:00
|
|
|
|
|
|
|
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 12:34:55 +01:00
|
|
|
homepage = https://fs-uae.net;
|
2016-10-10 21:37:11 +01:00
|
|
|
maintainers = with stdenv.lib; [ maintainers.AndersonTorres ];
|
2017-09-10 15:51:23 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2014-12-27 16:58:09 +00:00
|
|
|
};
|
|
|
|
}
|
2015-07-15 13:28:13 +01:00
|
|
|
# TODO: testing and Python GUI support
|