summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-24 02:59:14 +0100
committerDomen Kožar <domen@dev.si>2014-08-25 10:14:44 +0200
commit10e3cf6f5aa8e9bf5b969a02cc59256eff272279 (patch)
tree798864da3165642674fd8cdabac6e3ebb0e70eca /pkgs/misc
parented4b85abfc29a22fc6ff7712172c224ab82c4112 (diff)
downloadnixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar.gz
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar.bz2
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar.lz
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar.xz
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.tar.zst
nixpkgs-10e3cf6f5aa8e9bf5b969a02cc59256eff272279.zip
ppsspp: update to 0.9.9.1
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/ppsspp/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix
index ced8e1344da..4c49e1e3af2 100644
--- a/pkgs/misc/emulators/ppsspp/default.nix
+++ b/pkgs/misc/emulators/ppsspp/default.nix
@@ -3,15 +3,15 @@
 }:
 
 let
-  version = "0.9.9";
+  version = "0.9.9.1";
   fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF");
 in stdenv.mkDerivation {
   name = "PPSSPP-${version}";
 
   src = fetchgit {
     url = "https://github.com/hrydgard/ppsspp.git";
-    sha256 = "1m7awac87wrwys22qwbr0589im1ilm0dv30wp945xg30793rivvj";
-    rev = "b421e29391b34d997b2c99ce2bdc74a0df5bb472";
+    sha256 = "0fdbda0b4dfbecacd01850f1767e980281fed4cc34a21df26ab3259242d8c352";
+    rev = "bf709790c4fed9cd211f755acaa650ace0f7555a";
     fetchSubmodules = true;
   };
 
@@ -19,7 +19,7 @@ in stdenv.mkDerivation {
                 ++ (if withGamepads then [ SDL ] else [ ]);
 
   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; {
     homepage = "http://www.ppsspp.org/";