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