tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
smplayer: update from 14.3.0 to 14.9.0
Vincent Laporte
11 years ago
826572a9
65094018
+15
-2
2 changed files
expand all
collapse all
unified
split
pkgs
applications
video
smplayer
basegui.cpp.patch
default.nix
+11
pkgs/applications/video/smplayer/basegui.cpp.patch
reviewed
···
1
1
+
--- a/src/basegui.cpp 2014-08-20 01:04:51.000000000 +0100
2
2
+
+++ b/src/basegui.cpp 2014-10-11 10:25:57.561983556 +0100
3
3
+
@@ -5235,7 +5235,7 @@
4
4
+
#ifdef YOUTUBE_SUPPORT
5
5
+
void BaseGui::showTubeBrowser() {
6
6
+
qDebug("BaseGui::showTubeBrowser");
7
7
+
- QString exec = Paths::appPath() + "/smtube";
8
8
+
+ QString exec = "smtube";
9
9
+
qDebug("BaseGui::showTubeBrowser: '%s'", exec.toUtf8().constData());
10
10
+
if (!QProcess::startDetached(exec, QStringList())) {
11
11
+
QMessageBox::warning(this, "SMPlayer",
+4
-2
pkgs/applications/video/smplayer/default.nix
reviewed
···
1
1
{ stdenv, fetchurl, qt4 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "smplayer-14.3.0";
4
4
+
name = "smplayer-14.9.0";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
8
8
-
sha256 = "9b8db20043d1528ee5c6054526779e88a172d2c757429bd7095c794d65ecbc18";
8
8
+
sha256 = "04yzgmdj9hm9v7ln49zm2aa1r9mm9q12pym4bvfww7yzsvnx96j2";
9
9
};
10
10
+
11
11
+
patches = [ ./basegui.cpp.patch ];
10
12
11
13
buildInputs = [ qt4 ];
12
14