nixpkgs/pkgs/applications/office/ledger/3.0.nix
Moritz Ulrich 06f80c77e2 Update ledger3 to latest HEAD.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
2013-09-01 14:23:56 +02:00

36 lines
1 KiB
Nix

{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
let
rev = "0ec4291013bae966df2f5ca504d2216e488cd7ec";
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 ];
};
}