2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl }:
|
2011-07-18 15:06:35 +01:00
|
|
|
|
|
|
|
let
|
2021-02-10 04:33:00 +00:00
|
|
|
version = "6.4.16";
|
2011-07-18 15:06:35 +01:00
|
|
|
in
|
2008-01-30 19:49:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "fetchmail";
|
|
|
|
inherit version;
|
2011-07-18 15:06:35 +01:00
|
|
|
|
2007-09-04 14:26:33 +01:00
|
|
|
src = fetchurl {
|
2020-03-04 16:00:08 +00:00
|
|
|
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
|
2021-02-10 04:33:00 +00:00
|
|
|
sha256 = "sha256-BEuaCsA6+653RJed7+Pi4y45FBvKaP0Mje2i7UCIT7k=";
|
2007-09-04 14:26:33 +01:00
|
|
|
};
|
2008-01-30 19:49:42 +00:00
|
|
|
|
2008-02-22 10:12:01 +00:00
|
|
|
buildInputs = [ openssl ];
|
2008-02-22 10:09:54 +00:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-ssl=${openssl.dev}" ];
|
2008-02-22 10:09:54 +00:00
|
|
|
|
2008-01-30 19:49:42 +00:00
|
|
|
meta = {
|
2020-04-09 16:09:08 +01:00
|
|
|
homepage = "https://www.fetchmail.info/";
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A full-featured remote-mail retrieval and forwarding utility";
|
2011-07-18 15:06:35 +01:00
|
|
|
longDescription = ''
|
|
|
|
A full-featured, robust, well-documented remote-mail retrieval and
|
|
|
|
forwarding utility intended to be used over on-demand TCP/IP links
|
|
|
|
(such as SLIP or PPP connections). It supports every remote-mail
|
|
|
|
protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP,
|
|
|
|
all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
|
|
|
|
IPSEC.
|
|
|
|
'';
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.peti ];
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-09-04 14:26:33 +01:00
|
|
|
}
|