2014-04-18 03:47:15 +01:00
|
|
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
|
|
|
|
, texinfo, gnused }:
|
2011-07-20 23:56:39 +01:00
|
|
|
|
|
|
|
let
|
2014-11-07 15:23:59 +00:00
|
|
|
version = "3.1";
|
2011-07-20 23:56:39 +01:00
|
|
|
in
|
2014-04-18 03:47:15 +01:00
|
|
|
|
2011-07-20 23:56:39 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-11-07 15:23:59 +00:00
|
|
|
name = "ledger-${version}";
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2014-11-07 15:23:59 +00:00
|
|
|
# NOTE: fetchgit because ledger has submodules not included in the
|
|
|
|
# default github tarball.
|
2011-07-20 23:56:39 +01:00
|
|
|
src = fetchgit {
|
2014-11-07 15:23:59 +00:00
|
|
|
url = "https://github.com/ledger/ledger.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "1l5y4k830jyw7n1nnhssci3qahq091fj5cxcr77znk20nclz851s";
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
|
2014-10-01 20:55:40 +01:00
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ];
|
2011-07-20 23:56:39 +01:00
|
|
|
|
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/
|
2014-05-01 11:58:30 +01:00
|
|
|
cp -v "$src/lisp/"*.el $out/share/emacs/site-lisp/
|
2013-09-03 23:46:08 +01:00
|
|
|
'';
|
|
|
|
|
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";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2011-07-20 23:56:39 +01:00
|
|
|
|
|
|
|
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;
|
2014-04-18 03:47:15 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons the-kenny jwiegley ];
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
}
|