mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 12:02:47 +00:00
85befe90b0
The new version supports OpenSSL 1.x. Should be back-ported to release-20.03. See https://sourceforge.net/projects/fetchmail/files/branch_6.4/ for the changelog.
36 lines
1 KiB
Nix
36 lines
1 KiB
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
let
|
|
version = "6.4.2";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "fetchmail";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
|
|
sha256 = "0c563if3kribnj771l14aj06irmrlhm61dc68w6dp7zj4qrnn7z2";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
configureFlags = [ "--with-ssl=${openssl.dev}" ];
|
|
|
|
meta = {
|
|
homepage = https://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.peti ];
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|