Merge recent master into p/stdenv
Merged just before the pypi update, as it seems to cause problems on Hydra.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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
|
||||
@@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchgit, zlib, libpng, qt4, pkgconfig
|
||||
, withGamepads ? true, SDL # SDL is used for gamepad functionality
|
||||
}:
|
||||
|
||||
let
|
||||
version = "0.9.8";
|
||||
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";
|
||||
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 [ ]);
|
||||
|
||||
configurePhase = "cd Qt && qmake PPSSPPQt.pro";
|
||||
installPhase = "mkdir -p $out/bin && cp PPSSPPQt $out/bin";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.ppsspp.org/";
|
||||
description = "A PSP emulator, the Qt4 version.";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.fuuzetsu ];
|
||||
platforms = platforms.linux ++ platforms.darwin ++ platforms.cygwin;
|
||||
};
|
||||
}
|
||||
@@ -7,12 +7,12 @@ assert stdenv.isLinux;
|
||||
assert stdenv.gcc.gcc != null;
|
||||
|
||||
let
|
||||
version = "1.7.14";
|
||||
version = "1.7.19";
|
||||
name = "wine-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
||||
sha256 = "029y4vsjz2jxy31g5nylpl7wm5qhw37dsbx4f0za6swk51z97w9d";
|
||||
sha256 = "1wigncw7xl6ni6kjmhmbzffhf0pav22b50aql93wz7h2r409psn5";
|
||||
};
|
||||
|
||||
gecko = fetchurl {
|
||||
|
||||
Reference in New Issue
Block a user