mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
21 lines
667 B
Nix
21 lines
667 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "claude-dev";
|
|
publisher = "saoudrizwan";
|
|
version = "3.17.11";
|
|
hash = "sha256-z98AhLZwAR31u4GfEzzd41sCQ3kSu5xJTKDZQZ3ZZYQ=";
|
|
};
|
|
|
|
meta = {
|
|
description = "A VSCode extension providing an autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, using the browser, and more with your permission every step of the way";
|
|
downloadPage = "https://github.com/cline/cline";
|
|
homepage = "https://github.com/cline/cline";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.drupol ];
|
|
};
|
|
}
|