summary refs log tree commit diff
diff options
context:
space:
mode:
authorkashw2 <supra4keanu@hotmail.com>2023-08-31 11:18:48 +1000
committerkashw2 <supra4keanu@hotmail.com>2023-08-31 11:19:05 +1000
commit8013349ff938b8a94c83606192d9ae1e25b2d0b7 (patch)
treed3090d7929bd58f5a3786fc9e2ec230855f472ee
parentb2bbab164da32856d18d6693472d3b3ed569e3fc (diff)
downloadnixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar.gz
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar.bz2
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar.lz
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar.xz
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.tar.zst
nixpkgs-8013349ff938b8a94c83606192d9ae1e25b2d0b7.zip
qbittorrent: 4.5.4 -> 4.5.5
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 68b007fa53e..a82adc4dc3d 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -11,13 +11,13 @@ assert trackerSearch -> (python3 != null);
 
 mkDerivation rec {
   pname = "qbittorrent" + lib.optionalString (!guiSupport) "-nox";
-  version = "4.5.4";
+  version = "4.5.5";
 
   src = fetchFromGitHub {
     owner = "qbittorrent";
     repo = "qBittorrent";
     rev = "release-${version}";
-    hash = "sha256-c/ZJ83kxxFo/iI7Tjo3ZY0/vmVanjoJXBOu8XTnFm+Q=";
+    hash = "sha256-rWv+KGw+3385GOKK4MvoSP0CepotUZELiDVFpyDf+9k=";
   };
 
   enableParallelBuilding = true;
@@ -53,6 +53,6 @@ mkDerivation rec {
     changelog   = "https://github.com/qbittorrent/qBittorrent/blob/release-${version}/Changelog";
     license     = licenses.gpl2Plus;
     platforms   = platforms.unix;
-    maintainers = with maintainers; [ Anton-Latukha ];
+    maintainers = with maintainers; [ Anton-Latukha kashw2 ];
   };
 }