nixpkgs/pkgs/applications/emulators/fs-uae/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.1 KiB
Nix
Raw Normal View History

2022-01-03 23:20:29 +00:00
{ lib
, stdenv
, fetchFromGitHub
, SDL2
, autoreconfHook
, freetype
, gettext
, glib
, gtk2
, libGL
, libGLU
, libmpeg2
, lua
, openal
, pkg-config
, zip
, zlib
}:
2022-01-03 23:20:29 +00:00
stdenv.mkDerivation rec {
pname = "fs-uae";
2022-01-03 23:20:29 +00:00
version = "3.1.66";
2022-01-03 23:20:29 +00:00
src = fetchFromGitHub {
owner = "FrodeSolheim";
repo = pname;
rev = "v${version}";
hash = "sha256-zPVRPazelmNaxcoCStB0j9b9qwQDTgv3O7Bg3VlW9ys=";
};
2022-01-03 23:20:29 +00:00
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
SDL2
freetype
gettext
glib
gtk2
libGL
libGLU
libmpeg2
lua
openal
zip
zlib
];
2022-01-03 23:20:29 +00:00
meta = with lib; {
homepage = "https://fs-uae.net";
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;
2022-01-03 23:20:29 +00:00
maintainers = with maintainers; [ AndersonTorres ];
2017-09-10 14:51:23 +00:00
platforms = [ "i686-linux" "x86_64-linux" ];
};
}