34 lines
918 B
Nix
34 lines
918 B
Nix
|
{ stdenv, fetchurl, libevent, zlib, openssl, db4, bison, pam }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "opensmtpd-${version}";
|
||
|
version = "201306271531p1";
|
||
|
|
||
|
buildInputs = [ libevent zlib openssl db4 bison pam ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
|
||
|
sha256 = "0b06vzv566nai9j506rl3cwkk5favqxg23hsn08490ynn23im0sc";
|
||
|
};
|
||
|
|
||
|
configureFlags = [
|
||
|
"--with-mantype=doc"
|
||
|
"--with-pam"
|
||
|
"--without-bsd-auth"
|
||
|
"--with-sock-dir=/run"
|
||
|
"--with-privsep-user=smtpd"
|
||
|
"--with-queue-user=smtpq"
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
homepage = "http://www.postfix.org/";
|
||
|
description = ''
|
||
|
A free implementation of the server-side SMTP protocol as defined by
|
||
|
RFC 5321, with some additional standard extensions.
|
||
|
'';
|
||
|
license = stdenv.lib.licenses.isc;
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
||
|
};
|
||
|
}
|