mailutils: disable tests

This commit is contained in:
Domen Kožar 2014-06-04 16:18:04 +02:00
parent bc53b9ec4c
commit 638132b64c

View file

@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
gnutls mysql guile texinfo gnum4 ]
++ stdenv.lib.optional doCheck dejagnu;
doCheck = true;
# Tests fail since gcc 4.8
doCheck = false;
meta = {
description = "GNU Mailutils is a rich and powerful protocol-independent mail framework";
@ -51,8 +52,5 @@ stdenv.mkDerivation rec {
# Some of the dependencies fail to build on {cyg,dar}win.
platforms = stdenv.lib.platforms.gnu;
# Tests fail since gcc 4.8
broken = true;
};
}