0f239f6557
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae --help` got 0 exit code - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae --version` and found version 2.8.4 - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae --help` and found version 2.8.4 - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae-device-helper -h` got 0 exit code - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae-device-helper --help` got 0 exit code - ran `/nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4/bin/fs-uae-device-helper help` got 0 exit code - found 2.8.4 with grep in /nix/store/4n2cnrh2bq910wk4rlk1v7swjwhgq9jq-fs-uae-2.8.4 - directory tree listing: https://gist.github.com/6996324bf1e34d7108f74089af68c981
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, gettext, gtk2, SDL2, zlib, glib, openal, libGLU_combined, lua, freetype, libmpeg2, zip }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fs-uae-${version}";
|
|
version = "2.8.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz";
|
|
sha256 = "19ccb3gbpjwwazqc9pyin3jicjl27m2gyvy5bb5zysq0mxpzassj";
|
|
};
|
|
|
|
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;
|
|
homepage = http://fs-uae.net;
|
|
maintainers = with stdenv.lib; [ maintainers.AndersonTorres ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|
|
# TODO: testing and Python GUI support
|