From f23c66b3375bc2245f4e04846a57ef91d4c5c1ee Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Thu, 22 Jan 2026 08:21:34 +0100 Subject: [PATCH] vscode-extensions.anthropic.claude-code: 2.1.11 -> 2.1.15 The VSCode extension no longer ships with resources/native-binary/ directory, so we need to create it before symlinking the claude binary. https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md --- .../vscode/extensions/anthropic.claude-code/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index 423c440f280c..83ac5f951a49 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -8,11 +8,12 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-code"; publisher = "anthropic"; - version = "2.1.11"; - hash = "sha256-zqCILYNwBudsEv7+7ZV1YQoPJi30kj5w8suXqAPKORo="; + version = "2.1.15"; + hash = "sha256-BtVxSVp80qlZhMrh872+0DQ7sTskEdP/5p5T7n9jeGU="; }; postInstall = '' + mkdir -p "$out/$installPrefix/resources/native-binary" rm -f "$out/$installPrefix/resources/native-binary/claude"* ln -s "${claude-code}/bin/claude" "$out/$installPrefix/resources/native-binary/claude" '';