76eb096fac
box yet because for some reason it needs libX11 and libXext in the LD_LIBRARY_PATH... svn path=/nixpkgs/trunk/; revision=6114
16 lines
428 B
Nix
16 lines
428 B
Nix
{stdenv, fetchurl, x11, SDL}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "atari++-1.46";
|
|
# builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.math.tu-berlin.de/~thor/atari++/download/atari++.tgz;
|
|
md5 = "0619ec6b63852233111aa0bd263c8ea2";
|
|
};
|
|
# rom = fetchurl {
|
|
# url = http://surfnet.dl.sourceforge.net/sourceforge/atari800/xf25.zip;
|
|
# md5 = "4dc3b6b4313e9596c4d474785a37b94d";
|
|
# };
|
|
buildInputs = [x11 SDL];
|
|
}
|