Files
nixpkgs/pkgs/by-name/fs/fsuae/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

81 lines
1.5 KiB
Nix

{
lib,
SDL2,
autoreconfHook,
fetchFromGitHub,
freetype,
gettext,
glib,
gtk2,
libGL,
libGLU,
libmpeg2,
lua,
openal,
pkg-config,
strip-nondeterminism,
stdenv,
zip,
zlib,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fs-uae";
version = "3.2.35";
src = fetchFromGitHub {
owner = "FrodeSolheim";
repo = "fs-uae";
rev = "v${finalAttrs.version}";
hash = "sha256-e+Q+PC6Kpq3OBKsgoRvmu2p9dQfJeRCdFO1agXIGcU8=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
strip-nondeterminism
zip
];
buildInputs = [
SDL2
freetype
gettext
glib
gtk2
libGL
libGLU
libmpeg2
lua
openal
zlib
];
strictDeps = true;
# Make sure that the build timestamp is not included in the archive
postFixup = ''
strip-nondeterminism --type zip $out/share/fs-uae/fs-uae.dat
'';
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://fs-uae.net";
description = "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 = lib.licenses.gpl2Plus;
mainProgram = "fs-uae";
maintainers = with lib.maintainers; [
c4patino
];
platforms = with lib.systems.inspect; patternLogicalAnd patterns.isx86 patterns.isLinux;
};
})