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