2017-08-31 04:51:10 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python
|
2014-04-18 03:47:15 +01:00
|
|
|
, texinfo, gnused }:
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-07 15:23:59 +00:00
|
|
|
name = "ledger-${version}";
|
2017-08-31 04:51:10 +01:00
|
|
|
version = "3.1.1";
|
2011-07-20 23:56:39 +01:00
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ledger";
|
|
|
|
repo = "ledger";
|
|
|
|
rev = "v${version}";
|
2016-06-19 17:54:34 +01:00
|
|
|
sha256 = "1j4p7djkmdmd858hylrsc3inamh9z0vkfl98s9wiqfmrzw51pmxp";
|
2017-08-31 04:51:10 +01:00
|
|
|
fetchSubmodules = true;
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
buildInputs = [ boost gmp mpfr libedit python texinfo gnused ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
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
|
|
|
'';
|
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://ledger-cli.org/;
|
2011-07-20 23:56:39 +01:00
|
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
2017-08-31 04:51:10 +01:00
|
|
|
license = 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.
|
|
|
|
'';
|
|
|
|
|
2017-08-31 04:51:10 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ the-kenny jwiegley ];
|
2011-07-20 23:56:39 +01:00
|
|
|
};
|
|
|
|
}
|