7f062680e4
svn path=/nixpkgs/trunk/; revision=31782
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ stdenv, fetchgit, python, autoconf, automake, libtool, gettext, emacs, gmp
|
|
, pcre, expat, boost, mpfr, git, texinfo }:
|
|
|
|
let
|
|
rev = "d2915c66";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "ledger3-2012.01.${rev}";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/jwiegley/ledger.git";
|
|
inherit rev;
|
|
sha256 = "a489c8b1c48889040d2cebaac1a0019e90acac0b51c9abf7914944dcb4b801e7";
|
|
};
|
|
|
|
buildInputs = [
|
|
python autoconf automake libtool gettext emacs gmp pcre expat boost mpfr
|
|
git texinfo
|
|
];
|
|
|
|
CPPFLAGS = "-I${gmp}/include -I${mpfr}/include";
|
|
|
|
LDFLAGS = "-L${gmp}/lib -L${mpfr}/lib";
|
|
|
|
buildPhase = ''
|
|
sed -i acprep \
|
|
-e 's|search_prefixes = .*|search_prefixes = ["${boost}"]|' \
|
|
-e 's|/usr/bin/python|${python}/bin/python|'
|
|
export MAKEFLAGS="-j$NIX_BUILD_CORES -l$NIX_BUILD_CORES"
|
|
python acprep update --no-pch --prefix=$out
|
|
'';
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "http://ledger-cli.org/";
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
|
license = "BSD";
|
|
|
|
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.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|