25 lines
688 B
Nix
25 lines
688 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
vscode-extension-update-script,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "RooVeterinaryInc";
|
|
name = "roo-cline";
|
|
version = "3.20.3";
|
|
hash = "sha256-YCO8TjUZ2IpjTkDYf/4wQgsqGEvn2bt4+yVwWlb2eUQ=";
|
|
};
|
|
|
|
passthru.updateScript = vscode-extension-update-script { };
|
|
|
|
meta = {
|
|
description = "AI-powered autonomous coding agent that lives in your editor";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline";
|
|
homepage = "https://github.com/RooVetGit/Roo-Code";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ emaryn ];
|
|
};
|
|
}
|