summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-02-21 17:56:34 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-25 10:57:06 -0800
commita658e56aefd7335763a09dc8e9ccc6d15c36ec74 (patch)
tree658004b4f602e500d6de12c4ed93696bdebee07b
parent919504028f0cbf8fd22f29d1a4807ab4cf7271cd (diff)
downloadnixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar.gz
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar.bz2
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar.lz
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar.xz
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.tar.zst
nixpkgs-a658e56aefd7335763a09dc8e9ccc6d15c36ec74.zip
sabnzbd: 3.5.0 -> 3.5.1
-rw-r--r--pkgs/servers/sabnzbd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sabnzbd/default.nix b/pkgs/servers/sabnzbd/default.nix
index 32c82cfad1b..2dc2d76c891 100644
--- a/pkgs/servers/sabnzbd/default.nix
+++ b/pkgs/servers/sabnzbd/default.nix
@@ -24,14 +24,14 @@ let
   ]);
   path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
 in stdenv.mkDerivation rec {
-  version = "3.5.0";
+  version = "3.5.1";
   pname = "sabnzbd";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "sha256-Ay+y02kvFuwefT6f/8orClMiBK201AwSEWnPKgoeOFQ=";
+    sha256 = "sha256-/HakjY0/oGq3lt0kM5p9n3sZ4g/UDtUNyXNpl9zTFl8=";
   };
 
   nativeBuildInputs = [ makeWrapper ];