pyln-client: add patch that fixes plugins

Without this patch, the summary and feeadjuster plugins crash on startup.
This commit is contained in:
Jonas Nick
2022-09-06 11:43:46 +00:00
parent 5255c7e8bc
commit 63f8b74026
2 changed files with 24 additions and 0 deletions

View File

@@ -16,5 +16,13 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
# TODO-EXTERNAL:
# This patch is a variant (fixed relative path) of
# https://github.com/ElementsProject/lightning/pull/5574. This is already
# fixed upstream. Remove this after the next clightning release.
patches = [
./msat-null.patch
];
postUnpack = "sourceRoot=$sourceRoot/contrib/${pname}";
}