33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config
|
|
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU, libGL, lua, freetype, libmpeg2, zip }:
|
|
|
|
with lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fs-uae";
|
|
version = "3.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://fs-uae.net/stable/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1qwzhp34wy7bnd3c0plv11rg9fs5m92rh3ffnr9pn6ng0cpc8vpj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU libGL 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;
|
|
homepage = "https://fs-uae.net";
|
|
maintainers = with lib; [ maintainers.AndersonTorres ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|
|
# TODO: testing and Python GUI support
|