2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchurl, perl, pkg-config, systemd, openssl
|
2018-01-28 03:37:29 +00:00
|
|
|
, bzip2, zlib, lz4, inotify-tools, pam, libcap
|
2018-09-18 19:46:43 +00:00
|
|
|
, clucene_core_2, icu, openldap, libsodium, libstemmer, cyrus_sasl
|
dovecot, opensmtpd: add link to test in `meta.tests`
Rationale
---------
Currently, tests are hard to discover. For instance, someone updating
`dovecot` might not notice that the interaction of `dovecot` with
`opensmtpd` is handled in the `opensmtpd.nix` test.
And even for someone updating `opensmtpd`, it requires manual work to go
check in `nixos/tests` whether there is actually a test, especially
given not so many packages in `nixpkgs` have tests and this is thus most
of the time useless.
Finally, for the reviewer, it is much easier to check that the “Tested
via one or more NixOS test(s)” has been checked if the file modified
already includes the list of relevant tests.
Implementation
--------------
Currently, this commit only adds the metadata in the package. Each
element of the `meta.tests` attribute is a derivation that, when it
builds successfully, means the test has passed (ie. following the same
convention as NixOS tests).
Future Work
-----------
In the future, the tools could be made aware of this `meta.tests`
attribute, and for instance a `--with-tests` could be added to
`nix-build` so that it also builds all the tests. Or a `--without-tests`
to build without all the tests. @Profpatsch described in his NixCon talk
such systems.
Another thing that would help in the future would be the possibility to
reasonably easily have cross-derivation nix tests without the whole
NixOS VM stack. @7c6f434c already proposed such a system.
This RFC currently handles none of these concerns. Only the addition of
`meta.tests` as metadata to be used by maintainers to remember to run
relevant tests.
2018-08-04 03:18:28 +00:00
|
|
|
, nixosTests
|
2016-03-11 14:45:01 +00:00
|
|
|
# Auth modules
|
2019-09-22 07:38:09 +00:00
|
|
|
, withMySQL ? false, libmysqlclient
|
2016-03-11 14:45:01 +00:00
|
|
|
, withPgSQL ? false, postgresql
|
|
|
|
, withSQLite ? true, sqlite
|
|
|
|
}:
|
2011-10-25 20:34:19 +00:00
|
|
|
|
2012-06-13 07:09:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-18 16:40:40 +00:00
|
|
|
pname = "dovecot";
|
2021-01-04 16:35:06 +00:00
|
|
|
version = "2.3.13";
|
2011-10-25 20:34:19 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ perl pkg-config ];
|
2018-01-28 03:37:29 +00:00
|
|
|
buildInputs =
|
2018-09-18 19:46:43 +00:00
|
|
|
[ openssl bzip2 zlib lz4 clucene_core_2 icu openldap libsodium libstemmer cyrus_sasl.dev ]
|
2016-03-11 14:45:01 +00:00
|
|
|
++ lib.optionals (stdenv.isLinux) [ systemd pam libcap inotify-tools ]
|
2019-09-22 07:38:09 +00:00
|
|
|
++ lib.optional withMySQL libmysqlclient
|
2016-03-11 14:45:01 +00:00
|
|
|
++ lib.optional withPgSQL postgresql
|
|
|
|
++ lib.optional withSQLite sqlite;
|
2011-10-25 20:34:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-18 16:40:40 +00:00
|
|
|
url = "https://dovecot.org/releases/2.3/${pname}-${version}.tar.gz";
|
2021-01-04 16:35:06 +00:00
|
|
|
sha256 = "1i7ijss79a23v7b6lycfzaa8r5rh01k0h0b9h0j4a6n11sw7by53";
|
2011-10-25 20:34:19 +00:00
|
|
|
};
|
|
|
|
|
2018-12-10 22:48:42 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-03-11 14:45:01 +00:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs src/config/settings-get.pl
|
|
|
|
'';
|
|
|
|
|
|
|
|
# We need this for sysconfdir, see remark below.
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
cp -r $out/$out/* $out
|
|
|
|
rm -rf $out/$(echo "$out" | cut -d "/" -f2)
|
|
|
|
'';
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Make dovecot look for plugins in /etc/dovecot/modules
|
|
|
|
# so we can symlink plugins from several packages there.
|
|
|
|
# The symlinking needs to be done in NixOS.
|
2019-12-15 02:45:47 +00:00
|
|
|
./2.3.x-module_dir.patch
|
2016-03-11 14:45:01 +00:00
|
|
|
];
|
|
|
|
|
2012-07-30 16:58:54 +00:00
|
|
|
configureFlags = [
|
2016-03-11 14:45:01 +00:00
|
|
|
# It will hardcode this for /var/lib/dovecot.
|
|
|
|
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626211
|
2012-07-30 16:58:54 +00:00
|
|
|
"--localstatedir=/var"
|
2016-03-11 14:45:01 +00:00
|
|
|
# We need this so utilities default to reading /etc/dovecot/dovecot.conf file.
|
|
|
|
"--sysconfdir=/etc"
|
2012-07-30 16:58:54 +00:00
|
|
|
"--with-ldap"
|
2016-03-11 14:45:01 +00:00
|
|
|
"--with-ssl=openssl"
|
|
|
|
"--with-zlib"
|
|
|
|
"--with-bzlib"
|
2018-01-28 03:37:29 +00:00
|
|
|
"--with-lz4"
|
2016-03-11 14:45:01 +00:00
|
|
|
"--with-ldap"
|
|
|
|
"--with-lucene"
|
|
|
|
"--with-icu"
|
2018-12-10 22:48:42 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"i_cv_epoll_works=${if stdenv.isLinux then "yes" else "no"}"
|
|
|
|
"i_cv_posix_fallocate_works=${if stdenv.isDarwin then "no" else "yes"}"
|
|
|
|
"i_cv_inotify_works=${if stdenv.isLinux then "yes" else "no"}"
|
|
|
|
"i_cv_signed_size_t=no"
|
|
|
|
"i_cv_signed_time_t=yes"
|
|
|
|
"i_cv_c99_vsnprintf=yes"
|
|
|
|
"lib_cv_va_copy=yes"
|
|
|
|
"i_cv_mmap_plays_with_write=yes"
|
|
|
|
"i_cv_gmtime_max_time_t=${toString stdenv.hostPlatform.parsed.cpu.bits}"
|
|
|
|
"i_cv_signed_time_t=yes"
|
|
|
|
"i_cv_fd_passing=yes"
|
|
|
|
"lib_cv_va_copy=yes"
|
|
|
|
"lib_cv___va_copy=yes"
|
|
|
|
"lib_cv_va_val_copy=yes"
|
2016-03-11 14:45:01 +00:00
|
|
|
] ++ lib.optional (stdenv.isLinux) "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2016-09-29 11:32:28 +00:00
|
|
|
++ lib.optional (stdenv.isDarwin) "--enable-static"
|
2016-03-11 14:45:01 +00:00
|
|
|
++ lib.optional withMySQL "--with-mysql"
|
|
|
|
++ lib.optional withPgSQL "--with-pgsql"
|
|
|
|
++ lib.optional withSQLite "--with-sqlite";
|
2011-10-27 22:03:41 +00:00
|
|
|
|
2011-10-25 20:34:19 +00:00
|
|
|
meta = {
|
2020-03-08 07:02:20 +00:00
|
|
|
homepage = "https://dovecot.org/";
|
2011-10-25 20:34:19 +00:00
|
|
|
description = "Open source IMAP and POP3 email server written with security primarily in mind";
|
2021-03-04 23:30:56 +00:00
|
|
|
maintainers = with lib.maintainers; [ peti fpletz globin ajs124 ];
|
2021-01-15 07:07:56 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2018-11-11 13:55:23 +00:00
|
|
|
};
|
|
|
|
passthru.tests = {
|
|
|
|
opensmtpd-interaction = nixosTests.opensmtpd;
|
2021-01-04 16:45:28 +00:00
|
|
|
inherit (nixosTests) dovecot;
|
2011-10-25 20:34:19 +00:00
|
|
|
};
|
|
|
|
}
|