forked from mirrors/nixpkgs
Merge pull request #31934 from romildo/upd.qbittorrent
qbittorrent: 3.3.16 -> 4.0.1
This commit is contained in:
commit
8fafa3a85a
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, which
|
{ stdenv, fetchurl, pkgconfig, which
|
||||||
, boost, libtorrentRasterbar, qtbase, qttools
|
, boost, libtorrentRasterbar, qtbase, qttools, qtsvg
|
||||||
, debugSupport ? false # Debugging
|
, debugSupport ? false # Debugging
|
||||||
, guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
|
, guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
|
||||||
, webuiSupport ? true # WebUI
|
, webuiSupport ? true # WebUI
|
||||||
|
@ -10,16 +10,16 @@ with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "qbittorrent-${version}";
|
name = "qbittorrent-${version}";
|
||||||
version = "3.3.16";
|
version = "4.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
|
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
|
||||||
sha256 = "0mxyn2pajvb55bhcaz55v64p2xzy15p0yy174s62b5y3f8cac27a";
|
sha256 = "0khy875ahh9rlk8lyfpwsbxjsbp7i1cwqvd1j1s4cqc812szh3z3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig which ];
|
nativeBuildInputs = [ pkgconfig which ];
|
||||||
|
|
||||||
buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
|
buildInputs = [ boost libtorrentRasterbar qtbase qttools qtsvg ]
|
||||||
++ optional guiSupport dbus_libs;
|
++ optional guiSupport dbus_libs;
|
||||||
|
|
||||||
# Otherwise qm_gen.pri assumes lrelease-qt5, which does not exist.
|
# Otherwise qm_gen.pri assumes lrelease-qt5, which does not exist.
|
||||||
|
|
Loading…
Reference in a new issue