mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
fetchmail: updated to version 6.3.20
svn path=/nixpkgs/trunk/; revision=27822
This commit is contained in:
parent
f80ef6645b
commit
356928aad9
@ -1,18 +1,33 @@
|
|||||||
args: with args;
|
{ stdenv, fetchurl, openssl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "6.3.20";
|
||||||
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name="fetchmail-6.3.8";
|
name="fetchmail-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://download.berlios.de/fetchmail/fetchmail-6.3.8.tar.bz2;
|
url = "http://download.berlios.de/fetchmail/fetchmail-${version}.tar.bz2";
|
||||||
sha256 = "5612f9af367f641e0efd084f44fcf1889669e711dbd8c60f6b7953e494d1b09b";
|
sha256 = "22e94f11d885cb9330a197fd80217d44f65e6b087e4d4b4d83e573adfc24aa7b";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
configureFlags = "--with-ssl=${openssl}";
|
configureFlags = "--with-ssl=${openssl}";
|
||||||
|
|
||||||
patches = [ ./security-fix.patch ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.fetchmail.info;
|
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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user