clightning: remove failing plugin clnrest

This commit is contained in:
Erik Arvstedt 2024-03-04 23:01:10 +01:00
parent 989bc7bc16
commit 0a556af170
No known key found for this signature in database
GPG Key ID: 33312B944DD97846

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 = ''