2013-04-21 11:37:53 -07:00
|
|
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
|
2011-07-20 15:56:39 -07:00
|
|
|
|
|
|
|
let
|
2013-09-01 05:23:56 -07:00
|
|
|
rev = "0ec4291013bae966df2f5ca504d2216e488cd7ec";
|
2011-07-20 15:56:39 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2013-09-01 05:23:56 -07:00
|
|
|
name = "ledger3-2013.08.${rev}";
|
2011-07-20 15:56:39 -07:00
|
|
|
|
|
|
|
src = fetchgit {
|
2013-06-28 17:16:39 -07:00
|
|
|
url = "https://github.com/ledger/ledger.git";
|
2011-07-20 15:56:39 -07:00
|
|
|
inherit rev;
|
2013-09-01 05:23:56 -07:00
|
|
|
sha256 = "1y4rcbx8y2fxkdc7i06n1i5jf3cq05bvzpb8498mis2gwfmkw470";
|
2011-07-20 15:56:39 -07:00
|
|
|
};
|
|
|
|
|
2013-04-21 11:37:53 -07:00
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
|
2011-07-20 15:56:39 -07:00
|
|
|
|
2013-09-01 05:23:56 -07:00
|
|
|
doCheck = true;
|
2012-01-06 07:44:14 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-07-20 15:56:39 -07:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2012-01-06 07:55:24 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-07-20 15:56:39 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|