2014-04-18 06:47:15 +04:00
|
|
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
|
|
|
|
, texinfo, gnused }:
|
2011-07-21 02:56:39 +04:00
|
|
|
|
|
|
|
let
|
2016-06-19 19:54:34 +03:00
|
|
|
version = "3.1.1";
|
2011-07-21 02:56:39 +04:00
|
|
|
in
|
2014-04-18 06:47:15 +04:00
|
|
|
|
2011-07-21 02:56:39 +04:00
|
|
|
stdenv.mkDerivation {
|
2014-11-07 18:23:59 +03:00
|
|
|
name = "ledger-${version}";
|
2011-07-21 02:56:39 +04:00
|
|
|
|
2014-11-07 18:23:59 +03:00
|
|
|
# NOTE: fetchgit because ledger has submodules not included in the
|
|
|
|
# default github tarball.
|
2011-07-21 02:56:39 +04:00
|
|
|
src = fetchgit {
|
2014-11-07 18:23:59 +03:00
|
|
|
url = "https://github.com/ledger/ledger.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
2016-06-19 19:54:34 +03:00
|
|
|
sha256 = "1j4p7djkmdmd858hylrsc3inamh9z0vkfl98s9wiqfmrzw51pmxp";
|
2011-07-21 02:56:39 +04:00
|
|
|
};
|
|
|
|
|
2014-10-01 23:55:40 +04:00
|
|
|
buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ];
|
2011-07-21 02:56:39 +04:00
|
|
|
|
2012-01-06 19:44:14 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-09-04 02:46:08 +04: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 14:58:30 +04:00
|
|
|
cp -v "$src/lisp/"*.el $out/share/emacs/site-lisp/
|
2013-09-04 02:46:08 +04:00
|
|
|
'';
|
|
|
|
|
2011-07-21 02:56:39 +04:00
|
|
|
meta = {
|
|
|
|
homepage = "http://ledger-cli.org/";
|
|
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
2014-12-21 02:00:35 +03:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2011-07-21 02:56:39 +04: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 19:55:24 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2016-05-16 23:30:20 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ peti the-kenny jwiegley ];
|
2011-07-21 02:56:39 +04:00
|
|
|
};
|
|
|
|
}
|