50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
|
{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python
|
||
|
, texinfo, gnused, usePython ? true }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "ledger";
|
||
|
version = "3.1.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ledger";
|
||
|
repo = "ledger";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0bfnrqrd6wqgsngfpqi30xh6yy86pwl25iwzrqy44q31r0zl4mm3";
|
||
|
};
|
||
|
|
||
|
buildInputs = [
|
||
|
(boost.override { enablePython = usePython; })
|
||
|
gmp mpfr libedit python texinfo gnused
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
cmakeFlags = [
|
||
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
||
|
"-DBUILD_DOCS:BOOL=ON"
|
||
|
(stdenv.lib.optionalString usePython "-DUSE_PYTHON=true")
|
||
|
];
|
||
|
|
||
|
postBuild = ''
|
||
|
make doc
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://ledger-cli.org/";
|
||
|
description = "A double-entry accounting system with a command-line reporting interface";
|
||
|
license = 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 = platforms.all;
|
||
|
maintainers = with maintainers; [ the-kenny jwiegley ];
|
||
|
};
|
||
|
}
|