summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2017-11-22 10:02:40 -0200
committerJosé Romildo Malaquias <malaquias@gmail.com>2017-11-22 10:02:40 -0200
commita3ae91aa2ffc34979f9656cba487c503ae46b0a9 (patch)
treeb2dc1dbc53e173f1d2f054441452936820e77ab8 /pkgs/applications/networking/p2p
parent852acd8bafd49f1612838fb377396eda1243652c (diff)
downloadnixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar.gz
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar.bz2
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar.lz
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar.xz
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.tar.zst
nixlib-a3ae91aa2ffc34979f9656cba487c503ae46b0a9.zip
qbittorrent: 3.3.16 -> 4.0.1
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 03178b5cb75d..1cf6db21bedb 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, which
-, boost, libtorrentRasterbar, qtbase, qttools
+, boost, libtorrentRasterbar, qtbase, qttools, qtsvg
 , debugSupport ? false # Debugging
 , guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
 , webuiSupport ? true # WebUI
@@ -10,16 +10,16 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "qbittorrent-${version}";
-  version = "3.3.16";
+  version = "4.0.1";
 
   src = fetchurl {
     url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
-    sha256 = "0mxyn2pajvb55bhcaz55v64p2xzy15p0yy174s62b5y3f8cac27a";
+    sha256 = "0khy875ahh9rlk8lyfpwsbxjsbp7i1cwqvd1j1s4cqc812szh3z3";
   };
 
   nativeBuildInputs = [ pkgconfig which ];
 
-  buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
+  buildInputs = [ boost libtorrentRasterbar qtbase qttools qtsvg ]
     ++ optional guiSupport dbus_libs;
 
   # Otherwise qm_gen.pri assumes lrelease-qt5, which does not exist.