dovecot, opensmtpd: comment out invalid meta.tests attribute

See https://github.com/NixOS/nixpkgs/issues/50230 for details.
This commit is contained in:
Peter Simons 2018-11-11 14:01:25 +01:00
parent e9aec8ccab
commit 4fc8527697
2 changed files with 12 additions and 6 deletions

View File

@ -68,8 +68,11 @@ stdenv.mkDerivation rec {
description = "Open source IMAP and POP3 email server written with security primarily in mind";
maintainers = with stdenv.lib.maintainers; [ peti rickynils fpletz ];
platforms = stdenv.lib.platforms.unix;
tests = {
opensmtpd-interaction = nixosTests.opensmtpd;
};
# https://github.com/NixOS/nixpkgs/issues/50230 must be resolved before
# this can be enabled.
#
# tests = {
# opensmtpd-interaction = nixosTests.opensmtpd;
# };
};
}

View File

@ -61,8 +61,11 @@ stdenv.mkDerivation rec {
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ rickynils obadz ekleog ];
tests = {
basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd;
};
# https://github.com/NixOS/nixpkgs/issues/50230 must be resolved before
# this can be enabled.
#
# tests = {
# basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd;
# };
};
}