22 lines
614 B
Nix
22 lines
614 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "github";
|
|
name = "copilot-chat";
|
|
version = "0.33.1";
|
|
hash = "sha256-qiWuoxd/CXTxYtlOcj1Aww16wLvTZbQ7qJYhPPEndqk=";
|
|
};
|
|
|
|
meta = {
|
|
description = "GitHub Copilot Chat is a companion extension to GitHub Copilot that houses experimental chat features";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat";
|
|
homepage = "https://github.com/features/copilot";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.laurent-f1z1 ];
|
|
};
|
|
}
|