1 { lib, stdenv, fetchurl, openssl, python3 }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
9 sha256 = "sha256-yj/blRQcJ3rKEJvnf01FtH4D7gEAQwWN2QvBgttRjUo=";
12 buildInputs = [ openssl python3 ];
14 configureFlags = [ "--with-ssl=${openssl.dev}" ];
17 homepage = "https://www.fetchmail.info/";
18 description = "Full-featured remote-mail retrieval and forwarding utility";
20 A full-featured, robust, well-documented remote-mail retrieval and
21 forwarding utility intended to be used over on-demand TCP/IP links
22 (such as SLIP or PPP connections). It supports every remote-mail
23 protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP,
24 all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and
27 platforms = platforms.unix;
28 license = licenses.gpl2Plus;
29 mainProgram = "fetchmail";