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

48 lines
1.3 KiB
Nix
Raw Normal View History

2015-04-22 22:37:51 +00:00
{ stdenv, fetchurl, autoconf, automake, libtool, bison
2015-05-29 18:41:17 +00:00
, libasr, libevent, zlib, openssl, db, pam, cacert
2015-04-22 22:37:51 +00:00
}:
stdenv.mkDerivation rec {
name = "opensmtpd-${version}";
version = "5.7.1p1";
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";
sha256 = "67e9dd9682ca8c181e84e66c76245a4a8f6205834f915a2c021cdfeb22049e3a";
2015-02-13 00:24:05 +00:00
};
patches = [ ./proc_path.diff ];
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"
"--with-ca-file=/etc/ssl/certs/ca-certificates.crt"
"--with-libevent-dir=${libevent}"
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 ];
};
}