mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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:
parent
63051ab66b
commit
bf9b36b616
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user