1 { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, openssl }:
3 stdenv.mkDerivation rec {
7 nativeBuildInputs = [ meson ninja pkg-config ];
8 buildInputs = [ openssl ];
10 src = fetchFromGitHub {
14 sha256 = "1bhh8hlsl9597x0bnfl563k2c09b61qnkb9mfyqcmzlq63m1zw5y";
18 description = "A Library for Posting Electronic Mail";
20 libESMTP is an SMTP client library which manages submission of electronic mail
21 via a preconfigured Mail Transport Agent (MTA) such as Exim or Postfix.
22 It implements many SMTP extensions including TLS for security
23 and PIPELINING for high performance.
25 homepage = "https://libesmtp.github.io/";
26 license = licenses.lgpl21Plus;