nixpkgs/pkgs/servers/mail/opensmtpd/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2015-04-22 22:37:51 +00:00
{ stdenv, fetchurl, autoconf, automake, libtool, bison
, libasr, libevent, zlib, openssl, db, pam
}:
stdenv.mkDerivation rec {
name = "opensmtpd-${version}";
2015-04-22 22:37:51 +00:00
version = "5.4.5p1";
2015-04-22 22:37:51 +00:00
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib openssl db pam ];
src = fetchurl {
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
2015-04-22 22:37:51 +00:00
sha256 = "15sicrpqsgg72igdckkwpmbgrapcjbfjsdrvm0zl8z13kgp6r4ks";
2015-02-13 00:24:05 +00:00
};
2015-02-13 00:24:05 +00:00
configureFlags = [
2015-04-22 22:37:51 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-mantype=doc"
"--with-pam"
"--without-bsd-auth"
"--with-sock-dir=/run"
"--with-privsep-user=smtpd"
"--with-queue-user=smtpq"
2014-03-06 10:31:29 +00:00
"--with-ca-file=/etc/ssl/certs/ca-bundle.crt"
2015-02-13 00:24:05 +00:00
];
2015-04-22 22:37:51 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
meta = {
2014-12-18 19:04:22 +00:00
homepage = https://www.opensmtpd.org/;
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
'';
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.rickynils ];
};
}