Added ZSNES emulator package

svn path=/nixpkgs/trunk/; revision=27539
This commit is contained in:
Sander van der Burg 2011-06-25 22:25:50 +00:00
parent 7a53f9fdbb
commit e4126afa44
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{stdenv, fetchurl, nasm, SDL, zlib, libpng, ncurses, mesa}:
stdenv.mkDerivation {
name = "zsnes-1.51";
src = fetchurl {
url = mirror://sourceforge/zsnes/zsnes151src.tar.bz2;
sha256 = "08s64qsxziv538vmfv38fg1rfrz5k95dss5zdkbfxsbjlbdxwmi8";
};
buildInputs = [ nasm SDL zlib libpng ncurses mesa ];
preConfigure = ''
cd src
# Fix for undefined strncasecmp()
echo '#include <strings.h>' > tmp.cpp
cat tmp.cpp tools/strutil.h > tools/strutil.h.new
mv tools/strutil.h.new tools/strutil.h
# Fix for undefined system()
echo '#include <stdlib.h>' > tmp.cpp
cat tmp.cpp tools/depbuild.cpp > tools/depbuild.cpp.new
mv tools/depbuild.cpp.new tools/depbuild.cpp
# Fix for lots of undefined strcmp, strncmp etc.
echo '#include <string.h>' > tmp.cpp
cat tmp.cpp parsegen.cpp > parsegen.cpp.new
mv parsegen.cpp.new parsegen.cpp
'';
meta = {
description = "A Super Nintendo Entertainment System Emulator";
license = "GPLv2";
};
}

View File

@ -8090,6 +8090,8 @@ let
inherit (stdenv) mkDerivation;
};
zsnes = callPackage_i686 ../misc/emulators/zsnes { };
misc = import ../misc/misc.nix { inherit pkgs stdenv; };
}; in pkgs