about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2021-07-29 09:17:53 +0200
committerGitHub <noreply@github.com>2021-07-29 09:17:53 +0200
commitf417e6e5a1272466b88440d446b7e7e6bcb47957 (patch)
tree86fdc99969a4bf6ad215c38a19386525a83ae610 /pkgs/applications
parent15f5ec53d3a33a6d45c502fd8bae7e397fd1d3f6 (diff)
parent975a9d2e4b14574ba1ec80c46acc6b4c471f3a70 (diff)
Merge pull request #131898 from mweinelt/fetchmail
fetchmail: 6.4.16 -> 6.4.20
Diffstat (limited to 'pkgs/applications')
-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 d1659822bb2dc..18ed79c99d649 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.16";
+  version = "6.4.20";
 in
 stdenv.mkDerivation {
   pname = "fetchmail";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
-    sha256 = "sha256-BEuaCsA6+653RJed7+Pi4y45FBvKaP0Mje2i7UCIT7k=";
+    sha256 = "0xk171sbxcwjh1ibpipryw5sv4sy7jjfvhn5n373j04g5sp428f8";
   };
 
   buildInputs = [ openssl ];