mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
986 B
Nix
31 lines
986 B
Nix
{ lib, stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fetchmail";
|
|
version = "6.4.25";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
|
|
sha256 = "sha256-fr776JFy/Vnw/YMX2HQ6hDbzdczcqzkA5MPsBqj78n8=";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
configureFlags = [ "--with-ssl=${openssl.dev}" ];
|
|
|
|
meta = with lib; {
|
|
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 = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|