2011-07-18 15:06:35 +01:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
let
|
2014-01-13 15:39:37 +00:00
|
|
|
version = "6.3.26";
|
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 {
|
2014-05-18 12:25:43 +01:00
|
|
|
url = "mirror://sourceforge/fetchmail.berlios/fetchmail-${version}.tar.bz2";
|
2014-01-13 15:39:37 +00:00
|
|
|
sha256 = "08rafrs1dlr11myr0p99kg4k80qyy0fa63gg3ac88zn49174lwhw";
|
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 = {
|
2019-11-16 00:41:23 +00: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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2018-08-05 15:39:08 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-09-04 14:26:33 +01:00
|
|
|
}
|