Merge pull request #293334 from erikarvstedt/clightning-remove-clnrest

clightning: remove failing plugin `clnrest`
This commit is contained in:
Pavol Rusnak 2024-03-05 22:31:59 +01:00 committed by GitHub
commit 8c42f91af3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,8 +44,7 @@ stdenv.mkDerivation rec {
tools/generate-wire.py \
tools/update-mocks.sh \
tools/mockup.sh \
devtools/sql-rewrite.py \
plugins/clnrest/clnrest.py
devtools/sql-rewrite.py
'' else ''
substituteInPlace external/libwally-core/tools/autogen.sh --replace gsed sed && \
substituteInPlace external/libwally-core/configure.ac --replace gsed sed
@ -62,6 +61,11 @@ stdenv.mkDerivation rec {
# char buf[CMSG_SPACE(sizeof(fd))];
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) "-Wno-error=gnu-folding-constant";
# The `clnrest` plugin requires a Python environment to run
postInstall = ''
rm -r $out/libexec/c-lightning/plugins/clnrest
'';
meta = with lib; {
description = "A Bitcoin Lightning Network implementation in C";
longDescription = ''