Introduce VSCode configuration and integrate roo-cline extension. This includes adding roo-cline to vscode extensions and setting up metadata for its marketplace details.
25 lines
688 B
Nix
25 lines
688 B
Nix
{ lib
|
|
, vscode-utils
|
|
, vscode-extensions-update-script
|
|
,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "RooVeterinaryInc";
|
|
name = "roo-cline";
|
|
version = "3.11.10";
|
|
hash = "sha256-ZonPsVG9IIbdz1i3oBPcOjRsXTYZ/pUOjguUhY0bzWY=";
|
|
};
|
|
|
|
passthru.updateScript = vscode-extensions-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 ];
|
|
};
|
|
}
|