22 lines
607 B
Nix
22 lines
607 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "github";
|
|
name = "copilot";
|
|
version = "1.388.0";
|
|
hash = "sha256-7RjK8+PNI+rIuRQfCwpvswAiz991dacRO2qYhcv1vhk=";
|
|
};
|
|
|
|
meta = {
|
|
description = "GitHub Copilot uses OpenAI Codex to suggest code and entire functions in real-time right from your editor";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot";
|
|
homepage = "https://github.com/features/copilot";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.Zimmi48 ];
|
|
};
|
|
}
|