qBittorrent: 3.1.11 -> 3.2.3

+7 -8
+5 -6
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.1.11"; 13 + version = "3.2.3"; 14 14 15 15 src = fetchurl { 16 16 url = "mirror://sourceforge/qbittorrent/${name}.tar.xz"; 17 - sha256 = "0qvz8ifk01b9sw9x5yh3b5kmssx5yi026zvgvabdvfaqkvcmw43i"; 17 + sha256 = "05590ak4nnqkah8dy71cxf7mqv6phw0ih1719dm761mxf8vrz9w6"; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkgconfig which ]; ··· 23 23 ++ optional guiSupport dbus_libs; 24 24 25 25 configureFlags = [ 26 - "--with-libboost-lib=${boost.lib}/lib" 27 - "--with-libboost-inc=${boost.dev}/include" 26 + "--with-boost-libdir=${boost.lib}/lib" 27 + "--with-boost=${boost.dev}" 28 28 (if guiSupport then "" else "--disable-gui") 29 29 (if webuiSupport then "" else "--disable-webui") 30 30 ] ++ optional debugSupport "--enable-debug"; 31 31 32 - # https://github.com/qbittorrent/qBittorrent/issues/1992 33 - enableParallelBuilding = false; 32 + enableParallelBuilding = true; 34 33 35 34 meta = { 36 35 description = "Free Software alternative to µtorrent";
+2 -2
pkgs/top-level/all-packages.nix
··· 12466 12466 pythonmagick = callPackage ../applications/graphics/PythonMagick { }; 12467 12467 12468 12468 qbittorrent = callPackage ../applications/networking/p2p/qbittorrent { 12469 - boost = boost156; 12470 - libtorrentRasterbar = libtorrentRasterbar_0_16; 12469 + boost = boost; 12470 + libtorrentRasterbar = libtorrentRasterbar; 12471 12471 }; 12472 12472 12473 12473 eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; };