Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 name = "claude-dev"; 9 publisher = "saoudrizwan"; 10 version = "3.20.5"; 11 hash = "sha256-sxByZXSNuxVrW4WWKvNCmR2SZ6tR5CDxGXdLyHoegwc="; 12 }; 13 14 meta = { 15 description = "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"; 16 downloadPage = "https://github.com/cline/cline"; 17 homepage = "https://github.com/cline/cline"; 18 license = lib.licenses.asl20; 19 maintainers = [ lib.maintainers.drupol ]; 20 }; 21}