2011-07-18 15:06:35 +01:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "6.3.20";
|
|
|
|
in
|
2008-01-30 19:49:42 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-07-18 15:06:35 +01:00
|
|
|
name="fetchmail-${version}";
|
|
|
|
|
2007-09-04 14:26:33 +01:00
|
|
|
src = fetchurl {
|
2011-07-18 15:06:35 +01:00
|
|
|
url = "http://download.berlios.de/fetchmail/fetchmail-${version}.tar.bz2";
|
|
|
|
sha256 = "22e94f11d885cb9330a197fd80217d44f65e6b087e4d4b4d83e573adfc24aa7b";
|
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
|
|
|
|
|
|
|
configureFlags = "--with-ssl=${openssl}";
|
|
|
|
|
2008-01-30 19:49:42 +00:00
|
|
|
meta = {
|
2011-07-18 15:06:35 +01:00
|
|
|
homepage = "http://www.fetchmail.info/";
|
|
|
|
description = "a full-featured remote-mail retrieval and forwarding utility";
|
|
|
|
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;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-09-04 14:26:33 +01:00
|
|
|
}
|