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:02:20 +01:00
parent e9aec8ccab
commit 4fc8527697
2 changed files with 12 additions and 6 deletions
+6 -3
View File
@@ -68,8 +68,11 @@ stdenv.mkDerivation rec {
description = "Open source IMAP and POP3 email server written with security primarily in mind"; description = "Open source IMAP and POP3 email server written with security primarily in mind";
maintainers = with stdenv.lib.maintainers; [ peti rickynils fpletz ]; maintainers = with stdenv.lib.maintainers; [ peti rickynils fpletz ];
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
tests = { # https://github.com/NixOS/nixpkgs/issues/50230 must be resolved before
opensmtpd-interaction = nixosTests.opensmtpd; # this can be enabled.
}; #
# tests = {
# opensmtpd-interaction = nixosTests.opensmtpd;
# };
}; };
} }
+6 -3
View File
@@ -61,8 +61,11 @@ stdenv.mkDerivation rec {
license = licenses.isc; license = licenses.isc;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ rickynils obadz ekleog ]; maintainers = with maintainers; [ rickynils obadz ekleog ];
tests = { # https://github.com/NixOS/nixpkgs/issues/50230 must be resolved before
basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd; # this can be enabled.
}; #
# tests = {
# basic-functionality-and-dovecot-interaction = nixosTests.opensmtpd;
# };
}; };
} }