summary refs log tree commit diff
path: root/pkgs/misc/emulators/uae/default.nix
blob: 85fc6df9520f85d89674c0cc9df80532ec02753c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, pkgconfig, gtk, alsaLib, SDL}:

stdenv.mkDerivation {
  name = "uae-0.8.29";
  src = fetchurl {
    url = http://www.amigaemulator.org/files/sources/develop/uae-0.8.29.tar.bz2;
    sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4";
  };
  configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ];
  buildInputs = [ pkgconfig gtk alsaLib SDL ];
  
  meta = {
    description = "Ultimate/Unix/Unusable Amiga Emulator";
    license = stdenv.lib.licenses.gpl2Plus;
    homepage = http://www.amigaemulator.org;
    maintainers = [ stdenv.lib.maintainers.sander ];
  };
}