2017-08-31 04:51:10 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python
|
2018-05-03 12:40:48 +01:00
|
|
|
, texinfo, gnused, usePython ? true }:
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ledger";
|
2019-03-31 17:39:41 +01:00
|
|
|
version = "3.1.3";
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ledger";
|
|
|
|
repo = "ledger";
|
2019-03-31 17:39:41 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0bfnrqrd6wqgsngfpqi30xh6yy86pwl25iwzrqy44q31r0zl4mm3";
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
|
2018-07-01 18:32:50 +01:00
|
|
|
buildInputs = [
|
|
|
|
(boost.override { enablePython = usePython; })
|
|
|
|
gmp mpfr libedit python texinfo gnused
|
|
|
|
];
|
2017-08-31 04:51:10 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2012-01-06 15:44:14 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-12-21 20:36:29 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
"-DBUILD_DOCS:BOOL=ON"
|
|
|
|
(stdenv.lib.optionalString usePython "-DUSE_PYTHON=true")
|
|
|
|
];
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
make doc
|
|
|
|
'';
|
2016-09-07 23:03:50 +01:00
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://ledger-cli.org/;
|
2011-07-20 23:56:39 +01:00
|
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
2017-08-31 04:51:10 +01:00
|
|
|
license = licenses.bsd3;
|
2011-07-20 23:56:39 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ the-kenny jwiegley ];
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
}
|