blob: a60e607fff15cd33fb02db539536e98b9d4b051d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
, texinfo, gnused }:
let
version = "3.1.1";
rev = "20161114";
in
stdenv.mkDerivation {
name = "ledger-${version}-${rev}";
# NOTE: fetchgit because ledger has submodules not included in the
# default github tarball.
src = ./.;
buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ];
enableParallelBuilding = true;
# Skip byte-compiling of emacs-lisp files because this is currently
# broken in ledger...
postInstall = ''
mkdir -p $out/share/emacs/site-lisp/
cp -v "$src/lisp/"*.el $out/share/emacs/site-lisp/
'';
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
buildPhase = "make -j$NIX_BUILD_CORES";
checkPhase = "ctest -j$NIX_BUILD_CORES";
doCheck = true;
meta = {
homepage = "http://ledger-cli.org/";
description = "A double-entry accounting system with a command-line reporting interface";
license = stdenv.lib.licenses.bsd3;
longDescription = ''
Ledger is a powerful, double-entry accounting system that is accessed
from the UNIX command-line. This may put off some users, as there is
no flashy UI, but for those who want unparalleled reporting access to
their data, there really is no alternative.
'';
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ the-kenny jwiegley ];
};
}
|