clightning/plugins: format plugin defs, order alphabetically

This commit is contained in:
Erik Arvstedt 2022-07-14 23:45:28 +02:00
parent 9ac3d93b27
commit c82e0ee294
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 12 additions and 8 deletions

View File

@ -13,7 +13,16 @@ let
version = builtins.substring 0 7 src.rev;
plugins = with nbPython3Packages; {
helpme = { description = "Walks you through setting up a c-lightning node, offering advice for common problems"; };
commando = {
description = "Enable RPC over lightning";
extraPkgs = [ nbPython3Packages.runes ];
};
feeadjuster = {
description = "Dynamically changes channel fees to keep your channels more balanced";
};
helpme = {
description = "Walks you through setting up a c-lightning node, offering advice for common problems";
};
monitor = {
description = "Helps you analyze the health of your peers and channels";
extraPkgs = [ packaging ];
@ -25,10 +34,8 @@ let
"--replace prometheus-client==0.6.0 prometheus-client==0.13.1"
+ " --replace pyln-client~=0.9.3 pyln-client~=0.10.1";
};
rebalance = { description = "Keeps your channels balanced"; };
commando = {
description = "Enable RPC over lightning";
extraPkgs = [ nbPython3Packages.runes ];
rebalance = {
description = "Keeps your channels balanced";
};
summary = {
description = "Prints a summary of the node status";
@ -39,9 +46,6 @@ let
scriptName = "cl-zmq";
extraPkgs = [ twisted txzmq ];
};
feeadjuster = {
description = "Dynamically changes channel fees to keep your channels more balanced";
};
};
basePkgs = [ nbPython3Packages.pyln-client ];