24 lines
710 B
Nix
24 lines
710 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "vscode-augment";
|
|
publisher = "augment";
|
|
version = "0.825.5";
|
|
hash = "sha256-UKkrdxHlbcdpd3RQxNpZVBINZlncPv7e5RETnj/19Ts=";
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://marketplace.visualstudio.com/items/augment.vscode-augment/changelog";
|
|
description = "AI-powered coding assistant for VSCode";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=augment.vscode-augment";
|
|
homepage = "https://augmentcode.com/";
|
|
license = lib.licenses.unfree;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
maintainers = [ lib.maintainers.matteopacini ];
|
|
};
|
|
}
|