From 1f20df8a20c5172d0ef19918fd3be75318da86f1 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Tue, 14 Jul 2026 08:21:40 +0200 Subject: [PATCH] vscode-extensions.anthropic.claude-code: remove x86_64-darwin Nixpkgs 26.11 has dropped support for x86_64-darwin, so the platform can no longer be evaluated. This also broke the update script, which iterates over the supported platforms to refresh the per-arch vsix hashes and aborted on x86_64-darwin. Assisted-by: Claude Code (Claude Opus 4.8) --- .../vscode/extensions/anthropic.claude-code/default.nix | 5 ----- 1 file changed, 5 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 f547aec1465c..e29ed08e55e1 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -27,10 +27,6 @@ vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: { arch = "linux-arm64"; hash = "sha256-lgE5dld8lvt/dyGVNjR1ZiV2qtBu9pMZayNe5dBfHo0="; }; - "x86_64-darwin" = { - arch = "darwin-x64"; - hash = "sha256-AnqO7aZ3uybYnAHYCi5ppZ/5xOuiTqs+75TflN7bVow="; - }; "aarch64-darwin" = { arch = "darwin-arm64"; hash = "sha256-KKuUXjfIsngnKrSLTMYNzb6XVZkJszUwIihCGHQJ0gU="; @@ -60,7 +56,6 @@ vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: { platforms = [ "x86_64-linux" "aarch64-linux" - "x86_64-darwin" "aarch64-darwin" ]; };