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