39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
|
|
|
|
let
|
|
rev = "2c7ab8be";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "ledger3-2013.04.${rev}";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/jwiegley/ledger.git";
|
|
inherit rev;
|
|
sha256 = "1ng5ymzqzbgdrn2ghhr7jvcjv5y7ikhyck5p1yv5j024s17xdyj5";
|
|
};
|
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
|
|
|
|
# Unit tests fail in the current git snapshot. Try enabling them again
|
|
# when updating this package!
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|