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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoconf, automake, libtool, bison
2022-09-27 02:31:30 +00:00
, libasr, libevent, zlib, libressl, db, pam, libxcrypt, nixosTests
2015-04-22 22:37:51 +00:00
}:
2018-10-23 15:07:17 +00:00
stdenv.mkDerivation rec {
pname = "opensmtpd";
version = "6.8.0p2";
2015-04-22 22:37:51 +00:00
nativeBuildInputs = [ autoconf automake libtool bison ];
2022-09-27 02:31:30 +00:00
buildInputs = [ libasr libevent zlib libressl db pam libxcrypt ];
src = fetchurl {
url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz";
sha256 = "05sd7bmq29ibnqbl2z53hiyprfxzf0qydfdaixs68rz55wqhbgsi";
2015-02-13 00:24:05 +00:00
};
patches = [
./proc_path.diff # TODO: upstream to OpenSMTPD, see https://github.com/NixOS/nixpkgs/issues/54045
./cross_fix.diff # TODO: remove when https://github.com/OpenSMTPD/OpenSMTPD/pull/1177 will have made it into a release
];
2015-09-26 07:40:44 +00:00
2018-10-23 15:07:17 +00:00
# See https://github.com/OpenSMTPD/OpenSMTPD/issues/885 for the `sh bootstrap`
# requirement
postPatch = ''
substituteInPlace mk/smtpctl/Makefile.am --replace "chgrp" "true"
substituteInPlace mk/smtpctl/Makefile.am --replace "chmod 2555" "chmod 0555"
sh bootstrap
'';
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-auth-pam"
"--without-auth-bsdauth"
"--with-path-socket=/run"
"--with-path-pidfile=/run"
2016-05-22 20:22:39 +00:00
"--with-user-smtpd=smtpd"
"--with-user-queue=smtpq"
"--with-group-queue=smtpq"
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
"--with-libevent=${libevent.dev}"
"--with-table-db"
2015-02-13 00:24:05 +00:00
];
2018-10-23 15:07:17 +00:00
# See https://github.com/OpenSMTPD/OpenSMTPD/pull/884
makeFlags = [ "CFLAGS=-ffunction-sections" "LDFLAGS=-Wl,--gc-sections" ];
2015-04-22 22:37:51 +00:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
meta = with lib; {
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
'';
2016-05-22 20:22:39 +00:00
license = licenses.isc;
platforms = platforms.linux;
2020-09-24 19:12:32 +00:00
maintainers = with maintainers; [ obadz ekleog ];
};
passthru.tests = {
basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd;
rspamd-integration = nixosTests.opensmtpd-rspamd;
};
}