2021-01-17 03:30:45 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config
|
2019-11-10 17:44:34 +01:00
|
|
|
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU, libGL, lua, freetype, libmpeg2, zip }:
|
2014-12-27 17:58:09 +01:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
with lib;
|
2016-10-10 22:37:11 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-27 17:58:09 +01:00
|
|
|
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fs-uae";
|
2020-05-05 02:00:52 +02:00
|
|
|
version = "3.0.5";
|
2014-12-27 17:58:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-12 18:34:11 +02:00
|
|
|
url = "https://fs-uae.net/stable/${version}/${pname}-${version}.tar.gz";
|
2020-05-05 02:00:52 +02:00
|
|
|
sha256 = "1qwzhp34wy7bnd3c0plv11rg9fs5m92rh3ffnr9pn6ng0cpc8vpj";
|
2014-12-27 17:58:09 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:30:45 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-11-10 17:44:34 +01:00
|
|
|
buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU libGL lua freetype libmpeg2 zip ];
|
2014-12-27 17:58:09 +01: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;
|
2020-03-22 12:23:30 +01:00
|
|
|
homepage = "https://fs-uae.net";
|
2021-01-15 14:21:58 +01:00
|
|
|
maintainers = with lib; [ maintainers.AndersonTorres ];
|
2017-09-10 16:51:23 +02:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2014-12-27 17:58:09 +01:00
|
|
|
};
|
|
|
|
}
|
2015-07-15 14:28:13 +02:00
|
|
|
# TODO: testing and Python GUI support
|