b2548922bf
svn path=/nixpkgs/trunk/; revision=27541
12 lines
406 B
Nix
12 lines
406 B
Nix
{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 ];
|
|
}
|