23 lines
653 B
Nix
23 lines
653 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "claude-code";
|
|
publisher = "anthropic";
|
|
version = "2.0.42";
|
|
hash = "sha256-GGQVvyQmkPC5503AzSVU8pGXBb1rv5S1W04V1in1T8E=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Harness the power of Claude Code without leaving your IDE";
|
|
homepage = "https://docs.anthropic.com/s/claude-code";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=anthropic.claude-code";
|
|
license = lib.licenses.unfree;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
maintainers = with lib.maintainers; [ xiaoxiangmoe ];
|
|
};
|
|
}
|