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

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

32 lines
1.1 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchurl, pkg-config, gtk2, alsa-lib, SDL}:
stdenv.mkDerivation rec {
2021-08-12 23:00:21 +02:00
pname = "uae";
version = "0.8.29";
2016-02-22 01:22:28 +01:00
src = fetchurl {
url = "https://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-${version}.tar.bz2";
sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4";
};
2016-02-22 01:22:28 +01:00
configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ];
2016-02-22 01:22:28 +01:00
2021-01-17 03:30:45 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk2 alsa-lib SDL ];
2016-02-22 01:22:28 +01:00
hardeningDisable = [ "format" ];
# Workaround build failure on -fno-common toolchains:
# ld: bsdsocket.o:(.bss+0x0): multiple definition of
# `socketbases'; main.o:(.bss+0x2792c0): first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
LDFLAGS = [ "-lm" ];
2016-02-22 01:22:28 +01:00
meta = {
description = "Ultimate/Unix/Unusable Amiga Emulator";
2021-01-15 14:21:58 +01:00
license = lib.licenses.gpl2Plus;
homepage = "https://web.archive.org/web/20130901222855/http://www.amigaemulator.org/";
2021-01-15 14:21:58 +01:00
maintainers = [ lib.maintainers.sander ];
platforms = lib.platforms.linux;
};
}