qbittorrent: Refactor

This commit is contained in:
William A. Kennington III 2014-10-31 19:30:37 -07:00
parent 4c0d152d1e
commit 8f8712b1e1
2 changed files with 13 additions and 5 deletions

View File

@ -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;

View File

@ -10273,7 +10273,9 @@ let
pythonmagick = callPackage ../applications/graphics/PythonMagick { };
qbittorrent = callPackage ../applications/networking/p2p/qbittorrent { };
qbittorrent = callPackage ../applications/networking/p2p/qbittorrent {
libtorrentRasterbar = libtorrentRasterbar_0_16;
};
eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; };