about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorSimon Vandel Sillesen <simon.vandel@gmail.com>2015-08-13 04:02:30 +0200
committerSimon Vandel Sillesen <simon.vandel@gmail.com>2015-08-13 04:07:08 +0200
commit1d78f31b765f8e3fe81d79f5bc9ae381271094da (patch)
tree23f57b7dbf93c0ea175a4bcf4d46f2f970c72378 /pkgs/applications/networking/p2p
parent2f62815520906bf3e5118137f5ec90e9032268b2 (diff)
downloadnixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar.gz
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar.bz2
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar.lz
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar.xz
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.tar.zst
nixlib-1d78f31b765f8e3fe81d79f5bc9ae381271094da.zip
qBittorrent: 3.1.11 -> 3.2.3
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index f0e5a1c13e14..8ff11dba9055 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -10,11 +10,11 @@ assert guiSupport -> (dbus_libs != null);
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "qbittorrent-${version}";
-  version = "3.1.11";
+  version = "3.2.3";
 
   src = fetchurl {
     url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
-    sha256 = "0qvz8ifk01b9sw9x5yh3b5kmssx5yi026zvgvabdvfaqkvcmw43i";
+    sha256 = "05590ak4nnqkah8dy71cxf7mqv6phw0ih1719dm761mxf8vrz9w6";
   };
 
   nativeBuildInputs = [ pkgconfig which ];
@@ -23,14 +23,13 @@ stdenv.mkDerivation rec {
     ++ optional guiSupport dbus_libs;
 
   configureFlags = [
-    "--with-libboost-lib=${boost.lib}/lib"
-    "--with-libboost-inc=${boost.dev}/include"
+    "--with-boost-libdir=${boost.lib}/lib"
+    "--with-boost=${boost.dev}"
     (if guiSupport then "" else "--disable-gui")
     (if webuiSupport then "" else "--disable-webui")
   ] ++ optional debugSupport "--enable-debug";
 
-  # https://github.com/qbittorrent/qBittorrent/issues/1992 
-  enableParallelBuilding = false;
+  enableParallelBuilding = true;
 
   meta = {
     description = "Free Software alternative to µtorrent";