lol

smplayer: update from 14.3.0 to 14.9.0

+15 -2
+11
pkgs/applications/video/smplayer/basegui.cpp.patch
··· 1 + --- a/src/basegui.cpp 2014-08-20 01:04:51.000000000 +0100 2 + +++ b/src/basegui.cpp 2014-10-11 10:25:57.561983556 +0100 3 + @@ -5235,7 +5235,7 @@ 4 + #ifdef YOUTUBE_SUPPORT 5 + void BaseGui::showTubeBrowser() { 6 + qDebug("BaseGui::showTubeBrowser"); 7 + - QString exec = Paths::appPath() + "/smtube"; 8 + + QString exec = "smtube"; 9 + qDebug("BaseGui::showTubeBrowser: '%s'", exec.toUtf8().constData()); 10 + if (!QProcess::startDetached(exec, QStringList())) { 11 + QMessageBox::warning(this, "SMPlayer",
+4 -2
pkgs/applications/video/smplayer/default.nix
··· 1 1 { stdenv, fetchurl, qt4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "smplayer-14.3.0"; 4 + name = "smplayer-14.9.0"; 5 5 6 6 src = fetchurl { 7 7 url = "mirror://sourceforge/smplayer/${name}.tar.bz2"; 8 - sha256 = "9b8db20043d1528ee5c6054526779e88a172d2c757429bd7095c794d65ecbc18"; 8 + sha256 = "04yzgmdj9hm9v7ln49zm2aa1r9mm9q12pym4bvfww7yzsvnx96j2"; 9 9 }; 10 + 11 + patches = [ ./basegui.cpp.patch ]; 10 12 11 13 buildInputs = [ qt4 ]; 12 14