summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-09 02:49:50 +0200
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-09 02:49:50 +0200
commit27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22 (patch)
tree9f350a31f85634b6ac594401cbc386384e8867b6 /pkgs/misc
parent83e29974d1e2bb50b9330b1b77ca58d63df70616 (diff)
downloadnixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar.gz
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar.bz2
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar.lz
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar.xz
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.tar.zst
nixpkgs-27f8a89dfaf5d1155bfa7d7fd7a6b4168b717b22.zip
ppsspp: update to 0.9.9
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/ppsspp/bump-version-to-0.9.8.patch22
-rw-r--r--pkgs/misc/emulators/ppsspp/default.nix9
2 files changed, 3 insertions, 28 deletions
diff --git a/pkgs/misc/emulators/ppsspp/bump-version-to-0.9.8.patch b/pkgs/misc/emulators/ppsspp/bump-version-to-0.9.8.patch
deleted file mode 100644
index 5e474d6f747..00000000000
--- a/pkgs/misc/emulators/ppsspp/bump-version-to-0.9.8.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 48f6bf352154511d5acddfe44dd241c6a9ed92d7 Mon Sep 17 00:00:00 2001
-From: Bhavin <bhavin192@users.noreply.github.com>
-Date: Tue, 6 May 2014 22:44:58 +0530
-Subject: [PATCH] Update vaersion to 0.9.8
-
-It was 0.9.6 :(
----
- Qt/Settings.pri | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Qt/Settings.pri b/Qt/Settings.pri
-index 8b4c1d7..67949f2 100644
---- a/Qt/Settings.pri
-+++ b/Qt/Settings.pri
-@@ -1,4 +1,4 @@
--VERSION = 0.9.6
-+VERSION = 0.9.8
- DEFINES += USING_QT_UI USE_FFMPEG
- unix:!qnx:!symbian:!mac: CONFIG += linux
- maemo5|contains(MEEGO_EDITION,harmattan): CONFIG += maemo
---
-1.9.3
diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix
index 975de0f5270..ced8e1344da 100644
--- a/pkgs/misc/emulators/ppsspp/default.nix
+++ b/pkgs/misc/emulators/ppsspp/default.nix
@@ -3,21 +3,18 @@
 }:
 
 let
-  version = "0.9.8";
+  version = "0.9.9";
   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 = "11sqhb2m3502dzbizahh1w2dl7jv3fipwxyrmryj8fyaqqw0i36q";
-    rev = "cbc46be3f91cb8558fbb4b175b14e8e16cbf0243";
+    sha256 = "1m7awac87wrwys22qwbr0589im1ilm0dv30wp945xg30793rivvj";
+    rev = "b421e29391b34d997b2c99ce2bdc74a0df5bb472";
     fetchSubmodules = true;
   };
 
-  # Upstream forgot to bump a version in one file.
-  patches = [ ./bump-version-to-0.9.8.patch ];
-
   buildInputs = [ zlib libpng pkgconfig qt4 ]
                 ++ (if withGamepads then [ SDL ] else [ ]);