ledger3: Don't run tests on Darwin (they fail).

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
close #914
This commit is contained in:
Moritz Ulrich 2013-09-04 22:16:28 +02:00 committed by Vladimír Čunát
parent 63051ab66b
commit bf9b36b616

View File

@ -14,7 +14,8 @@ stdenv.mkDerivation {
buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
doCheck = true;
# Tests on Darwin are failing
doCheck = !stdenv.isDarwin;
enableParallelBuilding = true;
# Skip byte-compiling of emacs-lisp files because this is currently
@ -37,6 +38,6 @@ stdenv.mkDerivation {
'';
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ];
maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
};
}