2011-07-18 07:06:35 -07:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
let
|
2020-09-22 18:20:28 -07:00
|
|
|
version = "6.4.12";
|
2011-07-18 07:06:35 -07:00
|
|
|
in
|
2008-01-30 11:49:42 -08:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "fetchmail";
|
|
|
|
inherit version;
|
2011-07-18 07:06:35 -07:00
|
|
|
|
2007-09-04 06:26:33 -07:00
|
|
|
src = fetchurl {
|
2020-03-04 08:00:08 -08:00
|
|
|
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
|
2020-09-22 18:20:28 -07:00
|
|
|
sha256 = "11s83af63gs9nnrjb66yq58xriyvi8hzj4ykxp3kws5z3nby111b";
|
2007-09-04 06:26:33 -07:00
|
|
|
};
|
2008-01-30 11:49:42 -08:00
|
|
|
|
2008-02-22 02:12:01 -08:00
|
|
|
buildInputs = [ openssl ];
|
2008-02-22 02:09:54 -08:00
|
|
|
|
2018-07-25 14:44:21 -07:00
|
|
|
configureFlags = [ "--with-ssl=${openssl.dev}" ];
|
2008-02-22 02:09:54 -08:00
|
|
|
|
2008-01-30 11:49:42 -08:00
|
|
|
meta = {
|
2020-04-09 08:09:08 -07:00
|
|
|
homepage = "https://www.fetchmail.info/";
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A full-featured remote-mail retrieval and forwarding utility";
|
2011-07-18 07:06:35 -07: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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 13:30:20 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2018-08-05 07:39:08 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-01-30 11:49:42 -08:00
|
|
|
};
|
2007-09-04 06:26:33 -07:00
|
|
|
}
|