lol

vscode-extensions.tboby.cwtools-vscode: init at 0.10.25 (#389790)

authored by

Pol Dellaiera and committed by
GitHub
b12e0d01 01663400

+21
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 4949 4949 }; 4950 4950 }; 4951 4951 4952 + tboby.cwtools-vscode = callPackage ./tboby.cwtools-vscode { }; 4953 + 4952 4954 tomoki1207.pdf = buildVscodeMarketplaceExtension { 4953 4955 mktplcRef = { 4954 4956 name = "pdf";
+19
pkgs/applications/editors/vscode/extensions/tboby.cwtools-vscode/default.nix
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + vscode-utils.buildVscodeMarketplaceExtension { 6 + mktplcRef = { 7 + name = "cwtools-vscode"; 8 + publisher = "tboby"; 9 + version = "0.10.25"; 10 + hash = "sha256-TcnS4Cwn+V9hwScpLgUK5u8Jfm89EBv+koUOi1bB0DM="; 11 + }; 12 + meta = { 13 + description = "Paradox Language Features for Visual Studio Code"; 14 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=tboby.cwtools-vscode"; 15 + homepage = "https://github.com/cwtools/cwtools-vscode"; 16 + license = lib.licenses.mit; 17 + maintainers = [ lib.maintainers.therobot2105 ]; 18 + }; 19 + }