Merge pull request #141125 from r-burns/fetchmail

[21.05] fetchmail: 6.4.20 -> 6.4.22
This commit is contained in:
Ryan Burns 2021-10-09 11:51:15 -07:00 committed by GitHub
commit 9a40f18db3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,19 @@
{ lib, stdenv, fetchurl, openssl }: { lib, stdenv, fetchurl, openssl }:
let stdenv.mkDerivation rec {
version = "6.4.20";
in
stdenv.mkDerivation {
pname = "fetchmail"; pname = "fetchmail";
inherit version; version = "6.4.22";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz"; url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
sha256 = "0xk171sbxcwjh1ibpipryw5sv4sy7jjfvhn5n373j04g5sp428f8"; sha256 = "sha256-zGgYvVlDVgIWn6KS1tFj1Wshx/UxEoKUcKOs6r5hLIQ=";
}; };
buildInputs = [ openssl ]; buildInputs = [ openssl ];
configureFlags = [ "--with-ssl=${openssl.dev}" ]; configureFlags = [ "--with-ssl=${openssl.dev}" ];
meta = { meta = with lib; {
homepage = "https://www.fetchmail.info/"; homepage = "https://www.fetchmail.info/";
description = "A full-featured remote-mail retrieval and forwarding utility"; description = "A full-featured remote-mail retrieval and forwarding utility";
longDescription = '' longDescription = ''
@ -27,9 +24,8 @@ stdenv.mkDerivation {
all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
IPSEC. IPSEC.
''; '';
platforms = platforms.unix;
platforms = lib.platforms.unix; maintainers = [ maintainers.peti ];
maintainers = [ lib.maintainers.peti ]; license = licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
}; };
} }