Merge pull request #37674 from obsidiansystems/syslogng-smtp

syslog-ng: enable SMTP destination
This commit is contained in:
John Ericson
2018-04-05 18:58:47 -04:00
committed by GitHub
3 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libESMTP-${version}";
version = "1.0.6";
src = fetchurl {
url = "http://brianstafford.info/libesmtp/libesmtp-1.0.6.tar.bz2";
sha256 = "02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh";
};
meta = with stdenv.lib; {
homepage = http://brianstafford.info/libesmtp/index.html;
description = "A Library for Posting Electronic Mail";
license = licenses.lgpl21;
};
}