2011-07-18 14:06:35 +00:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
let
|
2014-01-13 15:39:37 +00:00
|
|
|
version = "6.3.26";
|
2011-07-18 14:06:35 +00:00
|
|
|
in
|
2008-01-30 19:49:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-07-18 14:06:35 +00:00
|
|
|
name="fetchmail-${version}";
|
|
|
|
|
2007-09-04 13:26:33 +00:00
|
|
|
src = fetchurl {
|
2014-05-18 11:25:43 +00:00
|
|
|
url = "mirror://sourceforge/fetchmail.berlios/fetchmail-${version}.tar.bz2";
|
2014-01-13 15:39:37 +00:00
|
|
|
sha256 = "08rafrs1dlr11myr0p99kg4k80qyy0fa63gg3ac88zn49174lwhw";
|
2007-09-04 13:26:33 +00: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
|
|
|
|
2016-04-16 17:44:32 +00:00
|
|
|
configureFlags = "--with-ssl=${openssl.dev}";
|
2008-02-22 10:09:54 +00:00
|
|
|
|
2008-01-30 19:49:42 +00:00
|
|
|
meta = {
|
2011-07-18 14:06:35 +00:00
|
|
|
homepage = "http://www.fetchmail.info/";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A full-featured remote-mail retrieval and forwarding utility";
|
2011-07-18 14:06:35 +00: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 20:30:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-09-04 13:26:33 +00:00
|
|
|
}
|