mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
79567a8b58
Upstream supports python3 in the version we have, so we can upgrade. Tested with `ledger python` on my files and it seems to work fine.
55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, boost, gmp, mpfr, libedit, python3
|
|
, texinfo, gnused, usePython ? true }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ledger";
|
|
version = "3.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ledger";
|
|
repo = "ledger";
|
|
rev = "v${version}";
|
|
sha256 = "0x6jxwss3wwzbzlwmnwb8yzjk8f9wfawif4f1b74z2qg6hc4r7f6";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = [
|
|
(boost.override { enablePython = usePython; python = python3; })
|
|
gmp mpfr libedit python3 gnused
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake texinfo ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DBUILD_DOCS:BOOL=ON"
|
|
(lib.optionalString usePython "-DUSE_PYTHON=true")
|
|
];
|
|
|
|
# by default, it will query the python interpreter for it's sitepackages location
|
|
# 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 "${python3.sitePackages}"'
|
|
'';
|
|
|
|
installTargets = [ "doc" "install" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://ledger-cli.org/";
|
|
description = "A double-entry accounting system with a command-line reporting interface";
|
|
license = licenses.bsd3;
|
|
|
|
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 = platforms.all;
|
|
maintainers = with maintainers; [ jwiegley ];
|
|
};
|
|
}
|