nixpkgs/pkgs/misc/emulators/generator/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

14 lines
419 B
Nix

{stdenv, fetchurl, gtk, SDL, nasm}:
stdenv.mkDerivation {
name = "generator-0.35-cbiere-r2";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/generator-0.35-cbiere-r2.tar.bz2;
md5 = "2076c20e0ad1b20d9ac15cab8cb12ad5";
};
configureFlags = "--with-gtk --with-raze --with-sdl-audio";
buildInputs = [gtk SDL nasm];
# Only required when not using SDL audio.
# patches = [./soundcard.patch];
}