tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qBittorrent: 3.1.11 -> 3.2.3
Simon Vandel Sillesen
10 years ago
1d78f31b
2f628155
+7
-8
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
p2p
qbittorrent
default.nix
top-level
all-packages.nix
+5
-6
pkgs/applications/networking/p2p/qbittorrent/default.nix
···
10
with stdenv.lib;
11
stdenv.mkDerivation rec {
12
name = "qbittorrent-${version}";
13
-
version = "3.1.11";
14
15
src = fetchurl {
16
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
17
-
sha256 = "0qvz8ifk01b9sw9x5yh3b5kmssx5yi026zvgvabdvfaqkvcmw43i";
18
};
19
20
nativeBuildInputs = [ pkgconfig which ];
···
23
++ optional guiSupport dbus_libs;
24
25
configureFlags = [
26
-
"--with-libboost-lib=${boost.lib}/lib"
27
-
"--with-libboost-inc=${boost.dev}/include"
28
(if guiSupport then "" else "--disable-gui")
29
(if webuiSupport then "" else "--disable-webui")
30
] ++ optional debugSupport "--enable-debug";
31
32
-
# https://github.com/qbittorrent/qBittorrent/issues/1992
33
-
enableParallelBuilding = false;
34
35
meta = {
36
description = "Free Software alternative to µtorrent";
···
10
with stdenv.lib;
11
stdenv.mkDerivation rec {
12
name = "qbittorrent-${version}";
13
+
version = "3.2.3";
14
15
src = fetchurl {
16
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
17
+
sha256 = "05590ak4nnqkah8dy71cxf7mqv6phw0ih1719dm761mxf8vrz9w6";
18
};
19
20
nativeBuildInputs = [ pkgconfig which ];
···
23
++ optional guiSupport dbus_libs;
24
25
configureFlags = [
26
+
"--with-boost-libdir=${boost.lib}/lib"
27
+
"--with-boost=${boost.dev}"
28
(if guiSupport then "" else "--disable-gui")
29
(if webuiSupport then "" else "--disable-webui")
30
] ++ optional debugSupport "--enable-debug";
31
32
+
enableParallelBuilding = true;
0
33
34
meta = {
35
description = "Free Software alternative to µtorrent";
+2
-2
pkgs/top-level/all-packages.nix
···
12466
pythonmagick = callPackage ../applications/graphics/PythonMagick { };
12467
12468
qbittorrent = callPackage ../applications/networking/p2p/qbittorrent {
12469
-
boost = boost156;
12470
-
libtorrentRasterbar = libtorrentRasterbar_0_16;
12471
};
12472
12473
eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; };
···
12466
pythonmagick = callPackage ../applications/graphics/PythonMagick { };
12467
12468
qbittorrent = callPackage ../applications/networking/p2p/qbittorrent {
12469
+
boost = boost;
12470
+
libtorrentRasterbar = libtorrentRasterbar;
12471
};
12472
12473
eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; };