* 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
This commit is contained in:
15
pkgs/misc/emulators/atari++/default.nix
Normal file
15
pkgs/misc/emulators/atari++/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{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];
|
||||
}
|
||||
Reference in New Issue
Block a user