Skip to content

Commit

Permalink
Merge pull request #52643 from jabranham/ledger-info
Browse files Browse the repository at this point in the history
ledger: Include info files
  • Loading branch information
matthewbauer committed Jan 8, 2019
2 parents 5b40c0a + c9a228c commit cd8c1a4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/applications/office/ledger/default.nix
Expand Up @@ -22,7 +22,15 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

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

postBuild = ''
make doc
'';

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

0 comments on commit cd8c1a4

Please sign in to comment.