Added Mupen64 Plus, a nintendo 64 emulator

svn path=/nixpkgs/trunk/; revision=27902
This commit is contained in:
Sander van der Burg 2011-07-22 14:03:23 +00:00
parent af9eaf3441
commit cb8409612c
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}:
stdenv.mkDerivation {
name = "mupen64plus-1.5";
src = fetchurl {
url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz;
sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq";
};
buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ];
preConfigure = ''
# Some C++ incompatibility fixes
sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Main.cpp
sed -i -e 's|char \* extstr = strstr|const char * extstr = strstr|' glide64/Combine.cpp
# Fix some hardcoded paths
sed -i -e "s|/usr/local|$out|g" main/main.c
'';
buildPhase = "make all";
installPhase = "PREFIX=$out make install";
}

View File

@ -7975,6 +7975,8 @@ let
mess = callPackage ../misc/emulators/mess { };
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
nix = nixStable;
nixStable = callPackage ../tools/package-management/nix {