3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/fetchmail/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
986 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl, openssl }:
2021-08-10 09:48:12 +01:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "fetchmail";
2022-05-25 21:25:28 +01:00
version = "6.4.30";
src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
2022-05-25 21:25:28 +01:00
sha256 = "sha256-NYJMIKodjZfj8WEf70m59/aDlvfLxNOoB/7SeunqRFo=";
};
buildInputs = [ openssl ];
2018-07-25 22:44:21 +01:00
configureFlags = [ "--with-ssl=${openssl.dev}" ];
2021-08-10 09:48:12 +01:00
meta = with lib; {
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.
'';
2021-08-10 09:48:12 +01:00
platforms = platforms.unix;
license = licenses.gpl2Plus;
};
}