Skip to content

Commit

Permalink
ledger: Enable building of tests, and concurrent make
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Sep 3, 2018
1 parent b06ad61 commit acfa8cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/applications/office/ledger/default.nix
Expand Up @@ -24,6 +24,11 @@ stdenv.mkDerivation rec {

cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" (stdenv.lib.optionalString usePython "-DUSE_PYTHON=true") ];

buildPhase = "make -j$NIX_BUILD_CORES";
checkPhase = "ctest -j$NIX_BUILD_CORES";

doCheck = true;

# Skip byte-compiling of emacs-lisp files because this is currently
# broken in ledger...
postInstall = ''
Expand Down

0 comments on commit acfa8cb

Please sign in to comment.