lol

ppsspp: update to 0.9.9.1

authored by

Mateusz Kowalczyk and committed by
Domen Kožar
10e3cf6f ed4b85ab

+4 -4
+4 -4
pkgs/misc/emulators/ppsspp/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "0.9.9"; 6 + version = "0.9.9.1"; 7 7 fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF"); 8 8 in stdenv.mkDerivation { 9 9 name = "PPSSPP-${version}"; 10 10 11 11 src = fetchgit { 12 12 url = "https://github.com/hrydgard/ppsspp.git"; 13 - sha256 = "1m7awac87wrwys22qwbr0589im1ilm0dv30wp945xg30793rivvj"; 14 - rev = "b421e29391b34d997b2c99ce2bdc74a0df5bb472"; 13 + sha256 = "0fdbda0b4dfbecacd01850f1767e980281fed4cc34a21df26ab3259242d8c352"; 14 + rev = "bf709790c4fed9cd211f755acaa650ace0f7555a"; 15 15 fetchSubmodules = true; 16 16 }; 17 17 ··· 19 19 ++ (if withGamepads then [ SDL ] else [ ]); 20 20 21 21 configurePhase = "cd Qt && qmake PPSSPPQt.pro"; 22 - installPhase = "mkdir -p $out/bin && cp PPSSPPQt $out/bin"; 22 + installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin"; 23 23 24 24 meta = with stdenv.lib; { 25 25 homepage = "http://www.ppsspp.org/";