about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-05 08:01:36 -0500
committerGitHub <noreply@github.com>2020-05-05 08:01:36 -0500
commit28e2165849395315001bd05426da9272423b984d (patch)
tree5c88fe8834afc8fc08cbb399f0c5def60398a302 /pkgs/applications
parent7a040bd6e4dfd298069bde3b9a1f62114480924d (diff)
parentc58ad04ff0fae5a531a03d328ff391442e88b43c (diff)
downloadnixlib-28e2165849395315001bd05426da9272423b984d.tar
nixlib-28e2165849395315001bd05426da9272423b984d.tar.gz
nixlib-28e2165849395315001bd05426da9272423b984d.tar.bz2
nixlib-28e2165849395315001bd05426da9272423b984d.tar.lz
nixlib-28e2165849395315001bd05426da9272423b984d.tar.xz
nixlib-28e2165849395315001bd05426da9272423b984d.tar.zst
nixlib-28e2165849395315001bd05426da9272423b984d.zip
Merge pull request #86863 from r-ryantm/auto-update/fetchmail
fetchmail: 6.4.3 -> 6.4.4
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 9e3790090272..1b892c7f536c 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, openssl }:
 
 let
-  version = "6.4.3";
+  version = "6.4.4";
 in
 stdenv.mkDerivation {
   pname = "fetchmail";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
-    sha256 = "1r6k14m40ni9114i3j1lr6zwpxky6k89mycgxxg0cpdap4a0wdmh";
+    sha256 = "1smbydwfjq29a2l44g6mgj0cd412fz40gbq6vq0klm7pmgd606si";
   };
 
   buildInputs = [ openssl ];