at master 21 lines 607 B view raw
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 publisher = "github"; 9 name = "copilot"; 10 version = "1.372.0"; 11 hash = "sha256-1L4zE2waIjI1Z8hYFaeHbnSWX9g31Sre4uDNOiQ2Fz8="; 12 }; 13 14 meta = { 15 description = "GitHub Copilot uses OpenAI Codex to suggest code and entire functions in real-time right from your editor"; 16 downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot"; 17 homepage = "https://github.com/features/copilot"; 18 license = lib.licenses.unfree; 19 maintainers = [ lib.maintainers.Zimmi48 ]; 20 }; 21}