ledger: 3.1.3 -> 3.2.1

This commit is contained in:
Jonathan Ringer 2020-08-01 17:25:55 -07:00
parent 3c8063df11
commit c9c8acfbc8
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
2 changed files with 18 additions and 16 deletions

View File

@ -1,37 +1,44 @@
{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python { stdenv, lib, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python
, texinfo, gnused, usePython ? true }: , texinfo, gnused, usePython ? true }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ledger"; pname = "ledger";
version = "3.1.3"; version = "3.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ledger"; owner = "ledger";
repo = "ledger"; repo = "ledger";
rev = "v${version}"; rev = "v${version}";
sha256 = "0bfnrqrd6wqgsngfpqi30xh6yy86pwl25iwzrqy44q31r0zl4mm3"; sha256 = "0x6jxwss3wwzbzlwmnwb8yzjk8f9wfawif4f1b74z2qg6hc4r7f6";
}; };
outputs = [ "out" "dev" ];
buildInputs = [ buildInputs = [
(boost.override { enablePython = usePython; }) (boost.override { enablePython = usePython; })
gmp mpfr libedit python texinfo gnused gmp mpfr libedit python gnused
]; ];
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake texinfo ];
enableParallelBuilding = true; enableParallelBuilding = true;
cmakeFlags = [ cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib" "-DCMAKE_INSTALL_LIBDIR=lib"
"-DBUILD_DOCS:BOOL=ON" "-DBUILD_DOCS:BOOL=ON"
(stdenv.lib.optionalString usePython "-DUSE_PYTHON=true") (lib.optionalString usePython "-DUSE_PYTHON=true")
]; ];
postBuild = '' # by default, it will query the python interpreter for it's sitepackages location
make doc # however, that would write to a different nixstore path, pass our own sitePackages location
prePatch = lib.optionalString usePython ''
substituteInPlace src/CMakeLists.txt \
--replace 'DESTINATION ''${Python_SITEARCH}' 'DESTINATION "${python.sitePackages}"'
''; '';
meta = with stdenv.lib; { installTargets = [ "doc" "install" ];
meta = with lib; {
homepage = "https://ledger-cli.org/"; homepage = "https://ledger-cli.org/";
description = "A double-entry accounting system with a command-line reporting interface"; description = "A double-entry accounting system with a command-line reporting interface";
license = licenses.bsd3; license = licenses.bsd3;

View File

@ -21073,12 +21073,7 @@ in
linuxband = callPackage ../applications/audio/linuxband { }; linuxband = callPackage ../applications/audio/linuxband { };
ledger = callPackage ../applications/office/ledger { ledger = callPackage ../applications/office/ledger { };
# Boost >= 1.67 changed the name of boost python; ledger's cmake build needs
# an update to find it:
# https://www.boost.org/doc/libs/1_68_0/libs/python/doc/html/rn.html
boost = boost15x;
};
ledger-autosync = callPackage ../applications/office/ledger-autosync { }; ledger-autosync = callPackage ../applications/office/ledger-autosync { };