2014-12-27 17:58:09 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2016-10-10 22:37:11 +02:00
|
|
|
, gettext, gtk2, SDL2, zlib, glib, openal, mesa, lua, freetype, libmpeg2, zip }:
|
2014-12-27 17:58:09 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-10-10 22:37:11 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-27 17:58:09 +01:00
|
|
|
|
|
|
|
name = "fs-uae-${version}";
|
2016-10-10 22:37:11 +02:00
|
|
|
version = "2.8.0";
|
2014-12-27 17:58:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-10 22:37:11 +02:00
|
|
|
url = "http://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz";
|
|
|
|
sha256 = "1cvvlkzhh4rrpax7505bngw990rx86l1nhad174zpqc9ah93il25";
|
2014-12-27 17:58:09 +01:00
|
|
|
};
|
|
|
|
|
2016-10-10 22:37:11 +02:00
|
|
|
buildInputs = [ pkgconfig gettext gtk2 SDL2 zlib glib openal mesa 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;
|
|
|
|
homepage = http://fs-uae.net;
|
2016-10-10 22:37:11 +02:00
|
|
|
maintainers = with stdenv.lib; [ maintainers.AndersonTorres ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-12-27 17:58:09 +01:00
|
|
|
};
|
|
|
|
}
|
2015-07-15 14:28:13 +02:00
|
|
|
# TODO: testing and Python GUI support
|