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
|
2016-06-19 17:54:34 +01:00
|
|
|
version = "3.1.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}";
|
2016-06-19 17:54:34 +01:00
|
|
|
sha256 = "1j4p7djkmdmd858hylrsc3inamh9z0vkfl98s9wiqfmrzw51pmxp";
|
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;
|
|
|
|
|
2016-09-07 23:03:50 +01:00
|
|
|
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
|
|
|
|
|
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;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ peti the-kenny jwiegley ];
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
}
|