about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-07-28 23:59:02 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-07-28 23:59:02 +0200
commit975a9d2e4b14574ba1ec80c46acc6b4c471f3a70 (patch)
tree173a4a5a1b49de52255c39e8232b5c3d404b0391 /pkgs/applications
parent3cc3160fe6cb3b85ac9b8f77b4c5d3b68f9c2962 (diff)
fetchmail: 6.4.16 -> 6.4.20
Fixes: CVE-2021-36386
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 ];