about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-06-06 17:44:39 +0000
committerTredwellGit <tredwell@tutanota.com>2021-06-06 17:44:39 +0000
commit30c602ac7aa2ba89b5055984ebd69a17cf9e5924 (patch)
tree23b1b6acf0afa94b14f99ff899afdb09cbe75689 /pkgs
parent6d1934ae67198fda888f01d1642d8bd3cbe14bbb (diff)
downloadnixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar.gz
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar.bz2
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar.lz
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar.xz
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.tar.zst
nixlib-30c602ac7aa2ba89b5055984ebd69a17cf9e5924.zip
qbittorrent: 4.3.3 -> 4.3.5
https://github.com/qbittorrent/qBittorrent/blob/release-4.3.5/Changelog
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 4c0d391ccaab..bd4fafed1119 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -12,15 +12,17 @@ assert trackerSearch -> (python3 != null);
 with lib;
 mkDerivation rec {
   pname = "qbittorrent";
-  version = "4.3.3";
+  version = "4.3.5";
 
   src = fetchFromGitHub {
     owner = "qbittorrent";
-    repo = "qbittorrent";
+    repo = "qBittorrent";
     rev = "release-${version}";
-    sha256 = "0y8vrvfv8n6zg6pgg5a9hmvxi2z9rrfd9k8zv04nv5js91b99ncq";
+    sha256 = "1vdk42f8rxffyfydjk5cgzg5gl88ng2pynlyxw5ajh08wvkkjzgy";
   };
 
+  enableParallelBuilding = true;
+
   # NOTE: 2018-05-31: CMake is working but it is not officially supported
   nativeBuildInputs = [ makeWrapper pkg-config ];
 
@@ -47,7 +49,8 @@ mkDerivation rec {
   meta = {
     description = "Featureful free software BitTorrent client";
     homepage    = "https://www.qbittorrent.org/";
-    license     = licenses.gpl2;
+    changelog   = "https://github.com/qbittorrent/qBittorrent/blob/release-${version}/Changelog";
+    license     = licenses.gpl2Plus;
     platforms   = platforms.linux;
     maintainers = with maintainers; [ Anton-Latukha ];
   };