mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
* 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:
parent
15ae1b326f
commit
76eb096fac
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];
|
||||
}
|
@ -2555,11 +2555,9 @@ rec {
|
||||
inherit fetchurl stdenv unzip zlib SDL;
|
||||
};
|
||||
|
||||
/*
|
||||
ataripp = (import ../misc/emulators/atari++) {
|
||||
inherit fetchurl stdenv x11 SDL;
|
||||
};
|
||||
*/
|
||||
|
||||
generator = (import ../misc/emulators/generator) {
|
||||
inherit fetchurl stdenv SDL nasm;
|
||||
|
Loading…
Reference in New Issue
Block a user