about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-10 05:46:32 -0500
committerGitHub <noreply@github.com>2020-06-10 05:46:32 -0500
commit9e7b60022f62c54041d4156c92bc699f82066bcf (patch)
treefc80043246e366a6dd5d34aaf4329d89e0bfaed9 /pkgs/applications
parentfb9ca6431c3a4e7b4442ee23b10b2ae6df1486db (diff)
parent9ca728109340c7ce47599c3338e032ba31c85594 (diff)
downloadnixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar.gz
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar.bz2
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar.lz
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar.xz
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.tar.zst
nixlib-9e7b60022f62c54041d4156c92bc699f82066bcf.zip
Merge pull request #89946 from r-ryantm/auto-update/fetchmail
fetchmail: 6.4.5 -> 6.4.6
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 c1104eb0a570..00b858a32798 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.5";
+  version = "6.4.6";
 in
 stdenv.mkDerivation {
   pname = "fetchmail";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
-    sha256 = "073bjh8qbvww7f5gbd6pq640qspi7dc6cjndvm0h2jcl0a90c3yk";
+    sha256 = "04b0sq1xad6gs1bfhkbmhsn1kq6y4gsx9l9ywjvd5d0rc15yrvqn";
   };
 
   buildInputs = [ openssl ];