ledger: fix Python 3.10 module build

The current default boost (1.77) doesn’t work with Python 3.10, so use
1.79 instead.
This commit is contained in:
Randy Eckenrode 2022-05-31 18:57:03 -04:00
parent 03364a73ef
commit d4964be44c
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9
2 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,6 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
homepage = "https://ledger-cli.org/";
description = "A double-entry accounting system with a command-line reporting interface";
license = licenses.bsd3;

View File

@ -4769,6 +4769,7 @@ in {
ledger = (toPythonModule (pkgs.ledger.override {
usePython = true;
boost = pkgs.boost179; # Current default boost (1.77) doesnt work with Python 3.10.
python3 = python;
})).py;