44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
|
|
, texinfo, gnused }:
|
|
|
|
let
|
|
rev = "a0c5addbbd";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ledger-3.0.2.${rev}";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/ledger/ledger.git";
|
|
inherit rev;
|
|
sha256 = "1yr4i8gpby67j4vl7xk109dwb14z8a424nwgva8rbms8115w4ps5";
|
|
};
|
|
|
|
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/
|
|
'';
|
|
|
|
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 = with stdenv.lib.maintainers; [ simons the-kenny jwiegley ];
|
|
};
|
|
}
|