nixpkgs/pkgs/applications/misc/fetchmail/default.nix

36 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
let
2020-04-09 16:09:08 +01:00
version = "6.4.3";
in
stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "fetchmail";
inherit version;
src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
2020-04-09 16:09:08 +01:00
sha256 = "1r6k14m40ni9114i3j1lr6zwpxky6k89mycgxxg0cpdap4a0wdmh";
};
buildInputs = [ openssl ];
2018-07-25 22:44:21 +01:00
configureFlags = [ "--with-ssl=${openssl.dev}" ];
meta = {
2020-04-09 16:09:08 +01:00
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;
};
}