From 755f283431b2f87b6c41008bf4621e96c26c11f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 May 2026 01:41:37 +0000 Subject: [PATCH] Update Claude Desktop download URLs to version 1.7196.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated download URLs resolved from official redirect endpoints. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- nix/claude-desktop.nix | 10 +++++----- scripts/setup/detect-host.sh | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/nix/claude-desktop.nix b/nix/claude-desktop.nix index a8ad892..96a9c08 100644 --- a/nix/claude-desktop.nix +++ b/nix/claude-desktop.nix @@ -16,16 +16,16 @@ }: let pname = "claude-desktop"; - version = "1.6608.2"; + version = "1.7196.0"; srcs = { x86_64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/x64/1.6608.2/Claude-ebf1a166e82541b54229aa620d117c60923a939a.exe"; - hash = "sha256-YpC3zcUTSREptlEw7WkqQ9JmVvaRYV8l32CE63hfleA="; + url = "https://downloads.claude.ai/releases/win32/x64/1.7196.0/Claude-2dbd7802ab037cbb97d77be1a063241009b5e598.exe"; + hash = "sha256-7VVQQsj+1lPdYluQT8lYnzG3ab9yB9+zz8eN05PWCUA="; }; aarch64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/arm64/1.6608.2/Claude-ebf1a166e82541b54229aa620d117c60923a939a.exe"; - hash = "sha256-D1SH3vkziryUWO1XKPDkPsFwkleqW3MipwNWPQmXw0g="; + url = "https://downloads.claude.ai/releases/win32/arm64/1.7196.0/Claude-2dbd7802ab037cbb97d77be1a063241009b5e598.exe"; + hash = "sha256-/ttSMNGfTkG0BmaIuGvZWd7pMm+Fk1CtfbSMG8NBsgo="; }; }; diff --git a/scripts/setup/detect-host.sh b/scripts/setup/detect-host.sh index 5f6d23e..ade19b9 100644 --- a/scripts/setup/detect-host.sh +++ b/scripts/setup/detect-host.sh @@ -24,15 +24,15 @@ detect_architecture() { case "$raw_arch" in x86_64) - claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.6608.2/Claude-ebf1a166e82541b54229aa620d117c60923a939a.exe' - claude_exe_sha256='6290b7cdc513491129b65130ed692a43d26656f691615f25df6084eb785f95e0' + claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.7196.0/Claude-2dbd7802ab037cbb97d77be1a063241009b5e598.exe' + claude_exe_sha256='ed555042c8fed653dd625b904fc9589f31b769bf7207dfb3cfc78dd393d60940' architecture='amd64' claude_exe_filename='Claude-Setup-x64.exe' echo 'Configured for amd64 (x86_64) build.' ;; aarch64) - claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.6608.2/Claude-ebf1a166e82541b54229aa620d117c60923a939a.exe' - claude_exe_sha256='0f5487def9338abc9458ed5728f0e43ec1709257aa5b7322a703563d0997c348' + claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.7196.0/Claude-2dbd7802ab037cbb97d77be1a063241009b5e598.exe' + claude_exe_sha256='fedb5230d19f4e41b4066688b86bd959dee9326f859350ad7db48c1bc341b20a' architecture='arm64' claude_exe_filename='Claude-Setup-arm64.exe' echo 'Configured for arm64 (aarch64) build.'