2013-04-21 20:37:53 +02:00
|
|
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
|
2011-07-21 00:56:39 +02:00
|
|
|
|
|
|
|
let
|
2013-09-04 00:45:06 +02:00
|
|
|
rev = "0ec4291";
|
2011-07-21 00:56:39 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2013-09-01 14:23:56 +02:00
|
|
|
name = "ledger3-2013.08.${rev}";
|
2011-07-21 00:56:39 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
2013-06-29 02:16:39 +02:00
|
|
|
url = "https://github.com/ledger/ledger.git";
|
2011-07-21 00:56:39 +02:00
|
|
|
inherit rev;
|
2013-09-01 14:23:56 +02:00
|
|
|
sha256 = "1y4rcbx8y2fxkdc7i06n1i5jf3cq05bvzpb8498mis2gwfmkw470";
|
2011-07-21 00:56:39 +02:00
|
|
|
};
|
|
|
|
|
2013-04-21 20:37:53 +02:00
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
|
2011-07-21 00:56:39 +02:00
|
|
|
|
2013-09-04 22:16:28 +02:00
|
|
|
# Tests on Darwin are failing
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2012-01-06 16:44:14 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-09-04 00:46:08 +02:00
|
|
|
# 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/
|
|
|
|
'';
|
|
|
|
|
2011-07-21 00:56:39 +02: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 16:55:24 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-09-04 22:16:28 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
|
2011-07-21 00:56:39 +02:00
|
|
|
};
|
|
|
|
}
|