Skip to content

Commit

Permalink
ledger3: Don't run tests on Darwin (they fail).
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Ulrich <[email protected]>
close NixOS#914
  • Loading branch information
the-kenny authored and vcunat committed Sep 6, 2013
1 parent 63051ab commit bf9b36b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/applications/office/ledger/3.0.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,6 +38,6 @@ stdenv.mkDerivation {
'';

platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ];
maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
};
}

0 comments on commit bf9b36b

Please sign in to comment.