Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 publisher = "github"; 9 name = "copilot-chat"; 10 version = "0.29.1"; 11 hash = "sha256-v9PP+3psOOMCrIgIaVqrwOUZ9tqTXiSjUUuOcCrEie4="; 12 }; 13 14 meta = { 15 description = "GitHub Copilot Chat is a companion extension to GitHub Copilot that houses experimental chat features"; 16 downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat"; 17 homepage = "https://github.com/features/copilot"; 18 license = lib.licenses.mit; 19 maintainers = [ lib.maintainers.laurent-f1z1 ]; 20 }; 21}