1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/misc/emulators/atari++/default.nix
Eelco Dolstra 76eb096fac * Another (better) Atari emulator. It doesn't quite work out of the
box yet because for some reason it needs libX11 and libXext in the
  LD_LIBRARY_PATH...

svn path=/nixpkgs/trunk/; revision=6114
2006-08-14 09:26:53 +00:00

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];
}