lol
1{stdenv, fetchurl, pkgconfig, gtk2, alsaLib, SDL}:
2
3stdenv.mkDerivation rec {
4 name = "uae-0.8.29";
5
6 src = fetchurl {
7 url = "http://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/${name}.tar.bz2";
8 sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4";
9 };
10
11 configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ];
12
13 buildInputs = [ pkgconfig gtk2 alsaLib SDL ];
14
15 hardeningDisable = [ "format" ];
16
17 meta = {
18 description = "Ultimate/Unix/Unusable Amiga Emulator";
19 license = stdenv.lib.licenses.gpl2Plus;
20 homepage = http://web.archive.org/web/20130901222855/http://www.amigaemulator.org/;
21 maintainers = [ stdenv.lib.maintainers.sander ];
22 platforms = stdenv.lib.platforms.linux;
23 };
24}