Merge pull request #12494 from simonvandel/qbittorrent-3.3.2

qbittorrent: 3.3.1 -> 3.3.3

+9 -4
+2 -2
pkgs/applications/networking/p2p/qbittorrent/default.nix
··· 10 10 with stdenv.lib; 11 11 stdenv.mkDerivation rec { 12 12 name = "qbittorrent-${version}"; 13 - version = "3.3.1"; 13 + version = "3.3.3"; 14 14 15 15 src = fetchurl { 16 16 url = "mirror://sourceforge/qbittorrent/${name}.tar.xz"; 17 - sha256 = "1li9law732n4vc7sn6i92pwxn8li7ypqaxcmfpm17kk978immlfs"; 17 + sha256 = "0lyv230vqwb77isjqm6fwwgv8hdap88zir9yrccj0qxj7zf8p3cw"; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkgconfig which ];
+7 -2
pkgs/applications/networking/p2p/qbittorrent/fix-lrelease.patch
··· 1 1 diff --git a/qm_gen.pri b/qm_gen.pri 2 - index ed29b76..2d5990c 100644 2 + index 5454440..2d5990c 100644 3 3 --- a/qm_gen.pri 4 4 +++ b/qm_gen.pri 5 - @@ -5,7 +5,7 @@ isEmpty(QMAKE_LRELEASE) { 5 + @@ -5,12 +5,7 @@ isEmpty(QMAKE_LRELEASE) { 6 6 win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe 7 7 else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease 8 8 unix { 9 + - equals(QT_MAJOR_VERSION, 4) { 9 10 - !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 } 11 + - } 12 + - equals(QT_MAJOR_VERSION, 5) { 13 + - !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt5 } 14 + - } 10 15 + !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease } 11 16 } else { 12 17 !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease }