about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-10-31 19:30:37 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-11-02 17:22:28 -0800
commit8f8712b1e19abc3fad342f23c28beef362190990 (patch)
treec24fe1dae359460a19eee21c0220f260ad7bd967 /pkgs/applications/networking/p2p
parent4c0d152d1ee7c5a5bdb279e65dddf2f25bedd42a (diff)
downloadnixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar.gz
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar.bz2
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar.lz
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar.xz
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.tar.zst
nixlib-8f8712b1e19abc3fad342f23c28beef362190990.zip
qbittorrent: Refactor
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 2294dd245a5f..51c43771bcf7 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -2,15 +2,21 @@
 , pkgconfig }:
 
 stdenv.mkDerivation rec {
-  name = "qbittorrent-3.1.10";
+  name = "qbittorrent-3.1.11";
 
   src = fetchurl {
     url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
-    sha256 = "0xhqli191r5v9b5x6wj1wsjlj6svf6ldgzl7jza39q3ipr5c2pg6";
+    sha256 = "0qvz8ifk01b9sw9x5yh3b5kmssx5yi026zvgvabdvfaqkvcmw43i";
   };
 
-  buildInputs = [ qt4 which dbus_libs boost libtorrentRasterbar
-    pkgconfig ];
+  buildInputs = [
+    qt4 which dbus_libs boost libtorrentRasterbar pkgconfig
+  ];
+
+  configureFlags = [
+    "--with-libboost-lib=${boost.lib}/lib"
+    "--with-libboost-inc=${boost.dev}/include"
+  ];
 
   # https://github.com/qbittorrent/qBittorrent/issues/1992 
   #enableParallelBuilding = true;