summary refs log tree commit diff
path: root/pkgs/applications/misc/fetchmail/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-10 04:33:00 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-02-10 04:33:00 +0000
commit7c035b9fb5f542e7edb5a06020c5685b72d6ff3f (patch)
tree66aa9d033d31830743c9638ac0e9fef5e1ccfb07 /pkgs/applications/misc/fetchmail/default.nix
parent66e66b9d481386f4c7a6b998f32ce794af0182ae (diff)
downloadnixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar.gz
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar.bz2
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar.lz
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar.xz
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.tar.zst
nixpkgs-7c035b9fb5f542e7edb5a06020c5685b72d6ff3f.zip
fetchmail: 6.4.15 -> 6.4.16
Diffstat (limited to 'pkgs/applications/misc/fetchmail/default.nix')
-rw-r--r--pkgs/applications/misc/fetchmail/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix
index 01493e13181..d1659822bb2 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchurl, openssl }:
 
 let
-  version = "6.4.15";
+  version = "6.4.16";
 in
 stdenv.mkDerivation {
   pname = "fetchmail";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
-    sha256 = "sha256-c1shdHSTfhPPzeotQqNGv2hIfg1h7+vk0Nnt3LOia5Y=";
+    sha256 = "sha256-BEuaCsA6+653RJed7+Pi4y45FBvKaP0Mje2i7UCIT7k=";
   };
 
   buildInputs = [ openssl ];