summary refs log tree commit diff
path: root/pkgs/misc/emulators/ppsspp
diff options
context:
space:
mode:
authorPatrick Callahan <pxcallahan@gmail.com>2016-12-16 21:58:57 -0700
committerPatrick Callahan <pxcallahan@gmail.com>2017-03-24 10:40:24 -0700
commit75f5ed248901919786327d8d0d55a79b65e2cb3f (patch)
tree148dc915cf0578227e00af16f7cf64412dfd74a0 /pkgs/misc/emulators/ppsspp
parent59261f20f0ca18e761df342e1243e0a6ff3d3387 (diff)
downloadnixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar.gz
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar.bz2
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar.lz
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar.xz
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.tar.zst
nixpkgs-75f5ed248901919786327d8d0d55a79b65e2cb3f.zip
ppsspp: 1.1.0 -> 1.3
Diffstat (limited to 'pkgs/misc/emulators/ppsspp')
-rw-r--r--pkgs/misc/emulators/ppsspp/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix
index 3f02304c0d4..611cc84325c 100644
--- a/pkgs/misc/emulators/ppsspp/default.nix
+++ b/pkgs/misc/emulators/ppsspp/default.nix
@@ -5,7 +5,7 @@
 assert withGamepads -> (SDL != null);
 
 let
-  version = "1.1.0";
+  version = "1.3";
   fstat = x: fn: "-D" + fn + "=" + (if x then "ON" else "OFF");
 in
 with stdenv.lib;
@@ -14,14 +14,16 @@ stdenv.mkDerivation rec{
 
   src = fetchgit {
     url = "https://github.com/hrydgard/ppsspp.git";
-    rev = "8c8e5de89d52b8bcb968227d96cbf049d04d1241";
+    rev = "refs/tags/v${version}";
     fetchSubmodules = true;
-    sha256 = "1q21qskzni0nvz2yi2m17gjh4i9nrs2l4fm4y2dww9m29xpvzw3x";
+    sha256 = "0l8vgdlw657r8gv7rz8iqa6zd9zrbzw10pwhcnahzil7w9qrd03g";
   };
 
-  buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ]
+  buildInputs = [ zlib libpng qt4 ]
                 ++ (if withGamepads then [ SDL ] else [ ]);
 
+  nativeBuildInputs = [ pkgconfig qmake4Hook ];
+
   qmakeFlags = [ "PPSSPPQt.pro" ];
 
   preConfigure = "cd Qt";
@@ -31,7 +33,7 @@ stdenv.mkDerivation rec{
     homepage = "http://www.ppsspp.org/";
     description = "A PSP emulator, the Qt4 version";
     license = licenses.gpl2Plus;
-    maintainers = [ maintainers.fuuzetsu maintainers.AndersonTorres ];
+    maintainers = with maintainers; [ fuuzetsu AndersonTorres ];
     platforms = platforms.linux ++ platforms.darwin ++ platforms.cygwin;
   };
 }