vscode-extensions.gruntfuggly.todo-tree: move to a separate file

This commit is contained in:
SandaruKasa
2026-06-09 01:53:31 +03:00
parent 4dd6071446
commit 3041c741c9
2 changed files with 17 additions and 11 deletions
@@ -2112,17 +2112,7 @@ let
};
};
gruntfuggly.todo-tree = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "todo-tree";
publisher = "Gruntfuggly";
version = "0.0.226";
hash = "sha256-Fj9cw+VJ2jkTGUclB1TLvURhzQsaryFQs/+f2RZOLHs=";
};
meta = {
license = lib.licenses.mit;
};
};
gruntfuggly.todo-tree = callPackage ./gruntfuggly.todo-tree { };
hars.cppsnippets = buildVscodeMarketplaceExtension {
mktplcRef = {
@@ -0,0 +1,16 @@
{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "todo-tree";
publisher = "Gruntfuggly";
version = "0.0.226";
hash = "sha256-Fj9cw+VJ2jkTGUclB1TLvURhzQsaryFQs/+f2RZOLHs=";
};
meta = {
license = lib.licenses.mit;
};
}