2015-04-22 23:37:51 +01:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, bison
|
2016-05-22 21:22:39 +01:00
|
|
|
, libasr, libevent, zlib, openssl, db, pam
|
2015-04-22 23:37:51 +01:00
|
|
|
}:
|
2013-07-15 14:05:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "opensmtpd-${version}";
|
2016-05-22 21:22:39 +01:00
|
|
|
version = "5.9.2p1";
|
2013-07-15 14:05:03 +01:00
|
|
|
|
2015-04-22 23:37:51 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool bison ];
|
|
|
|
buildInputs = [ libasr libevent zlib openssl db pam ];
|
2013-07-15 14:05:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
|
2016-05-22 21:22:39 +01:00
|
|
|
sha256 = "07d7f1m5sxyz6mkk228rcm7fsf7350994ayvmhgph333q5rz48im";
|
2015-02-13 00:24:05 +00:00
|
|
|
};
|
2013-07-15 14:05:03 +01:00
|
|
|
|
2015-09-26 08:40:44 +01:00
|
|
|
patches = [ ./proc_path.diff ];
|
|
|
|
|
2015-02-13 00:24:05 +00:00
|
|
|
configureFlags = [
|
2015-04-22 23:37:51 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-07-15 14:05:03 +01:00
|
|
|
"--with-mantype=doc"
|
|
|
|
"--with-pam"
|
|
|
|
"--without-bsd-auth"
|
|
|
|
"--with-sock-dir=/run"
|
2016-05-22 21:22:39 +01:00
|
|
|
"--with-user-smtpd=smtpd"
|
|
|
|
"--with-user-queue=smtpq"
|
|
|
|
"--with-group-queue=smtpq"
|
2015-07-31 00:30:15 +01:00
|
|
|
"--with-ca-file=/etc/ssl/certs/ca-certificates.crt"
|
2015-10-05 14:58:37 +01:00
|
|
|
"--with-libevent-dir=${libevent.dev}"
|
2016-02-11 13:29:10 +00:00
|
|
|
"--enable-table-db"
|
2015-02-13 00:24:05 +00:00
|
|
|
];
|
2013-07-15 14:05:03 +01:00
|
|
|
|
2015-04-22 23:37:51 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
|
|
|
|
2016-05-22 21:22:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-18 19:04:22 +00:00
|
|
|
homepage = https://www.opensmtpd.org/;
|
2013-07-15 14:05:03 +01:00
|
|
|
description = ''
|
|
|
|
A free implementation of the server-side SMTP protocol as defined by
|
2014-11-11 13:20:43 +00:00
|
|
|
RFC 5321, with some additional standard extensions
|
2013-07-15 14:05:03 +01:00
|
|
|
'';
|
2016-05-22 21:22:39 +01:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ rickynils obadz ];
|
2013-07-15 14:05:03 +01:00
|
|
|
};
|
|
|
|
}
|