2021-01-11 07:54:33 +00:00
|
|
|
{ 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
|
|
|
}:
|
2013-07-15 13:05:03 +00:00
|
|
|
|
2018-10-23 15:07:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "opensmtpd";
|
2021-01-17 12:36:34 +00:00
|
|
|
version = "6.8.0p2";
|
2013-07-15 13:05:03 +00:00
|
|
|
|
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 ];
|
2013-07-15 13:05:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz";
|
2021-01-17 12:36:34 +00:00
|
|
|
sha256 = "05sd7bmq29ibnqbl2z53hiyprfxzf0qydfdaixs68rz55wqhbgsi";
|
2015-02-13 00:24:05 +00:00
|
|
|
};
|
2013-07-15 13:05:03 +00:00
|
|
|
|
2018-06-17 20:28:23 +00:00
|
|
|
patches = [
|
2019-01-16 16:11:39 +00:00
|
|
|
./proc_path.diff # TODO: upstream to OpenSMTPD, see https://github.com/NixOS/nixpkgs/issues/54045
|
2022-04-26 17:47:52 +00:00
|
|
|
./cross_fix.diff # TODO: remove when https://github.com/OpenSMTPD/OpenSMTPD/pull/1177 will have made it into a release
|
2018-06-17 20:28:23 +00:00
|
|
|
];
|
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
|
|
|
|
'';
|
2016-05-23 21:07:05 +00:00
|
|
|
|
2015-02-13 00:24:05 +00:00
|
|
|
configureFlags = [
|
2015-04-22 22:37:51 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2013-07-15 13:05:03 +00:00
|
|
|
"--with-mantype=doc"
|
2016-05-27 12:36:42 +00:00
|
|
|
"--with-auth-pam"
|
|
|
|
"--without-auth-bsdauth"
|
|
|
|
"--with-path-socket=/run"
|
2021-04-28 11:15:23 +00:00
|
|
|
"--with-path-pidfile=/run"
|
2016-05-22 20:22:39 +00:00
|
|
|
"--with-user-smtpd=smtpd"
|
|
|
|
"--with-user-queue=smtpq"
|
|
|
|
"--with-group-queue=smtpq"
|
2016-05-27 12:36:42 +00:00
|
|
|
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
"--with-libevent=${libevent.dev}"
|
|
|
|
"--with-table-db"
|
2015-02-13 00:24:05 +00:00
|
|
|
];
|
2013-07-15 13:05:03 +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}"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.opensmtpd.org/";
|
2013-07-15 13:05:03 +00: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 13:05:03 +00:00
|
|
|
'';
|
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 ];
|
2018-11-11 13:55:23 +00:00
|
|
|
};
|
|
|
|
passthru.tests = {
|
|
|
|
basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd;
|
2021-05-19 20:37:49 +00:00
|
|
|
rspamd-integration = nixosTests.opensmtpd-rspamd;
|
2013-07-15 13:05:03 +00:00
|
|
|
};
|
|
|
|
}
|