summary refs log tree commit diff
path: root/pkgs/applications/misc/fetchmail/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-03-04 17:00:08 +0100
committerPeter Simons <simons@cryp.to>2020-03-04 17:07:45 +0100
commit85befe90b0e041984c1d5d3116385ae49f0ecf88 (patch)
tree6b677a2b3e302ae69508a6750a93d1efca05627b /pkgs/applications/misc/fetchmail/default.nix
parentbf83a7cc66f6e4157fd6514e22096495e1a3b5e0 (diff)
downloadnixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar.gz
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar.bz2
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar.lz
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar.xz
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.tar.zst
nixpkgs-85befe90b0e041984c1d5d3116385ae49f0ecf88.zip
fetchmail: update from version 6.3.26 to 6.4.2
The new version supports OpenSSL 1.x. Should be back-ported to
release-20.03.

See https://sourceforge.net/projects/fetchmail/files/branch_6.4/
for the changelog.
Diffstat (limited to 'pkgs/applications/misc/fetchmail/default.nix')
-rw-r--r--pkgs/applications/misc/fetchmail/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix
index 6c4ecf6fa39..07691b26b75 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchurl, openssl }:
 
 let
-  version = "6.3.26";
+  version = "6.4.2";
 in
 stdenv.mkDerivation {
   pname = "fetchmail";
   inherit version;
 
   src = fetchurl {
-    url = "mirror://sourceforge/fetchmail.berlios/fetchmail-${version}.tar.bz2";
-    sha256 = "08rafrs1dlr11myr0p99kg4k80qyy0fa63gg3ac88zn49174lwhw";
+    url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
+    sha256 = "0c563if3kribnj771l14aj06irmrlhm61dc68w6dp7zj4qrnn7z2";
   };
 
   buildInputs = [ openssl ];