Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5vscode-utils.buildVscodeMarketplaceExtension { 6 mktplcRef = { 7 name = "cwtools-vscode"; 8 publisher = "tboby"; 9 version = "0.10.26"; 10 hash = "sha256-1ZfmcF87LyRxCbQvVX21m1yFu+7QeDCofKXEHj5W8DA="; 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}