Adding back the 1.5 expression of mupen64plus
It has a GUI, for example.
This commit is contained in:
parent
3abc3f4a68
commit
5f677039c7
|
@ -0,0 +1,33 @@
|
||||||
|
{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
|
||||||
|
|
||||||
|
# Remove PATH environment variable from install script
|
||||||
|
sed -i -e "s|export PATH=|#export PATH=|" ./install.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = "make all";
|
||||||
|
installPhase = "PREFIX=$out make install";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A Nintendo 64 Emulator";
|
||||||
|
license = "GPLv2+";
|
||||||
|
homepage = http://code.google.com/p/mupen64plus;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,16 +1,28 @@
|
||||||
{stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}:
|
{stdenv, fetchurl, which, pkgconfig, SDL, gtk, mesa, SDL_ttf}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "mupen64plus-1.99.5";
|
name = "mupen64plus-1.5";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = https://mupen64plus.googlecode.com/files/mupen64plus-bundle-src-1.99.5.tar.gz;
|
url = http://mupen64plus.googlecode.com/files/Mupen64Plus-1-5-src.tar.gz;
|
||||||
sha1 = "ca80ae446c9591e272e3ec93f0a2a8b01cfcd34e";
|
sha256 = "0gygfgyr2sg4yx77ijk133d1ra0v1yxi4xjxrg6kp3zdjmhdmcjq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ];
|
buildInputs = [ which pkgconfig SDL gtk mesa SDL_ttf ];
|
||||||
|
|
||||||
buildPhase = "./m64p_build.sh PREFIX=$out COREDIR=$out/lib/ PLUGINDIR=$out/lib/mupen64plus/ SHAREDIR=$out/share/mupen64plus/";
|
preConfigure = ''
|
||||||
installPhase = "./m64p_install.sh PREFIX=$out";
|
# 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
|
||||||
|
|
||||||
|
# Remove PATH environment variable from install script
|
||||||
|
sed -i -e "s|export PATH=|#export PATH=|" ./install.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = "make all";
|
||||||
|
installPhase = "PREFIX=$out make install";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A Nintendo 64 Emulator";
|
description = "A Nintendo 64 Emulator";
|
||||||
|
|
|
@ -8876,7 +8876,7 @@ let
|
||||||
|
|
||||||
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
mupen64plus = callPackage ../misc/emulators/mupen64plus { };
|
||||||
|
|
||||||
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
|
mupen64plus1_5 = callPackage ../misc/emulators/mupen64plus/1.5.nix { };
|
||||||
|
|
||||||
nix = nixStable;
|
nix = nixStable;
|
||||||
|
|
||||||
|
@ -9065,6 +9065,8 @@ let
|
||||||
inherit (gnome2) zenity;
|
inherit (gnome2) zenity;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { };
|
||||||
|
|
||||||
x2x = callPackage ../tools/X11/x2x { };
|
x2x = callPackage ../tools/X11/x2x { };
|
||||||
|
|
||||||
xosd = callPackage ../misc/xosd { };
|
xosd = callPackage ../misc/xosd { };
|
||||||
|
|
Loading…
Reference in New Issue