nixpkgs/pkgs/applications/misc/fetchmail/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

32 lines
1.0 KiB
Nix

{ lib, stdenv, fetchurl, openssl, python3 }:
stdenv.mkDerivation rec {
pname = "fetchmail";
version = "6.4.38";
src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
sha256 = "sha256-pstOqGOsYdJC/7LbVko5EjdhV40+QNcc57bykFvmCdk=";
};
buildInputs = [ openssl python3 ];
configureFlags = [ "--with-ssl=${openssl.dev}" ];
meta = with lib; {
homepage = "https://www.fetchmail.info/";
description = "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;
mainProgram = "fetchmail";
};
}