Files
nixpkgs/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix
2025-10-31 09:57:10 +00:00

23 lines
653 B
Nix

{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "claude-code";
publisher = "anthropic";
version = "2.0.30";
hash = "sha256-KQ+3yk5WmHIiu6evpPSWfzEbqVKFj2XY8wwGxcqGOJc=";
};
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 ];
};
}