a7ba6d655d
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
36 lines
1,018 B
Nix
36 lines
1,018 B
Nix
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
|
|
|
|
let
|
|
rev = "0ec4291";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "ledger3-2013.08.${rev}";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/ledger/ledger.git";
|
|
inherit rev;
|
|
sha256 = "1y4rcbx8y2fxkdc7i06n1i5jf3cq05bvzpb8498mis2gwfmkw470";
|
|
};
|
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
|
|
|
|
doCheck = true;
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "http://ledger-cli.org/";
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
|
license = "BSD";
|
|
|
|
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 = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|