Skip to content

Commit

Permalink
fetchmail: update from version 6.3.26 to 6.4.2
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
peti committed Mar 4, 2020
1 parent bf83a7c commit 85befe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions 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 ];
Expand Down
4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -19052,9 +19052,7 @@ in

fehlstart = callPackage ../applications/misc/fehlstart { };

fetchmail = callPackage ../applications/misc/fetchmail {
openssl = openssl_1_0_2;
};
fetchmail = callPackage ../applications/misc/fetchmail { };

fff = callPackage ../applications/misc/fff { };

Expand Down

0 comments on commit 85befe9

Please sign in to comment.