ppsspp: update to 0.9.9.1

This commit is contained in:
Mateusz Kowalczyk 2014-08-24 02:59:14 +01:00 committed by Domen Kožar
parent ed4b85abfc
commit 10e3cf6f5a

View File

@ -3,15 +3,15 @@
}: }:
let let
version = "0.9.9"; version = "0.9.9.1";
fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF"); fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF");
in stdenv.mkDerivation { in stdenv.mkDerivation {
name = "PPSSPP-${version}"; name = "PPSSPP-${version}";
src = fetchgit { src = fetchgit {
url = "https://github.com/hrydgard/ppsspp.git"; url = "https://github.com/hrydgard/ppsspp.git";
sha256 = "1m7awac87wrwys22qwbr0589im1ilm0dv30wp945xg30793rivvj"; sha256 = "0fdbda0b4dfbecacd01850f1767e980281fed4cc34a21df26ab3259242d8c352";
rev = "b421e29391b34d997b2c99ce2bdc74a0df5bb472"; rev = "bf709790c4fed9cd211f755acaa650ace0f7555a";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -19,7 +19,7 @@ in stdenv.mkDerivation {
++ (if withGamepads then [ SDL ] else [ ]); ++ (if withGamepads then [ SDL ] else [ ]);
configurePhase = "cd Qt && qmake PPSSPPQt.pro"; configurePhase = "cd Qt && qmake PPSSPPQt.pro";
installPhase = "mkdir -p $out/bin && cp PPSSPPQt $out/bin"; installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://www.ppsspp.org/"; homepage = "http://www.ppsspp.org/";