vscode-extensions.anthropic.claude-code: 1.0.109 -> 1.0.112 (#442040)

authored by kirillrdy and committed by GitHub 93fdc3de 99b02106

+8 -18
+8 -18
pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix
··· 1 { 2 lib, 3 vscode-utils, 4 - claude-code, 5 }: 6 - vscode-utils.buildVscodeExtension (finalAttrs: { 7 - pname = "claude-code"; 8 - inherit (claude-code) version; 9 - 10 - vscodeExtPublisher = "anthropic"; 11 - vscodeExtName = "claude-code"; 12 - vscodeExtUniqueId = "${finalAttrs.vscodeExtPublisher}.${finalAttrs.vscodeExtName}"; 13 - 14 - src = "${claude-code}/lib/node_modules/@anthropic-ai/claude-code/vendor/claude-code.vsix"; 15 - 16 - unpackPhase = '' 17 - runHook preUnpack 18 19 - unzip $src 20 - 21 - runHook postUnpack 22 - ''; 23 24 meta = { 25 description = "Harness the power of Claude Code without leaving your IDE"; ··· 29 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 30 maintainers = with lib.maintainers; [ xiaoxiangmoe ]; 31 }; 32 - })
··· 1 { 2 lib, 3 vscode-utils, 4 }: 5 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + name = "claude-code"; 9 + publisher = "anthropic"; 10 + version = "1.0.112"; 11 + hash = "sha256-xQvw68PW+JjCxmILZBA/XB/+Qy1hTfBRxX3PI3zmUb8="; 12 + }; 13 14 meta = { 15 description = "Harness the power of Claude Code without leaving your IDE"; ··· 19 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 20 maintainers = with lib.maintainers; [ xiaoxiangmoe ]; 21 }; 22 + }