From 25d87587f98edb0edc56148cdbefd09157b28635 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 14 Mar 2026 01:38:06 +0000 Subject: [PATCH] Update Claude Desktop download URLs to version 1.1.6679 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) --- build.sh | 4 ++-- nix/claude-desktop.nix | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sh b/build.sh index 6e20612..ccd020f 100755 --- a/build.sh +++ b/build.sh @@ -77,13 +77,13 @@ detect_architecture() { case "$raw_arch" in x86_64) - claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.6452/Claude-5afc23a0310b20a371d1fbd79ddf31a392ebef25.exe' + claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.6679/Claude-f8f4ffd55f41cdea65b2c8adb312eb985aef916f.exe' 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.1.6452/Claude-5afc23a0310b20a371d1fbd79ddf31a392ebef25.exe' + claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.1.6679/Claude-f8f4ffd55f41cdea65b2c8adb312eb985aef916f.exe' architecture='arm64' claude_exe_filename='Claude-Setup-arm64.exe' echo 'Configured for arm64 (aarch64) build.' diff --git a/nix/claude-desktop.nix b/nix/claude-desktop.nix index c063ce2..4528f0f 100644 --- a/nix/claude-desktop.nix +++ b/nix/claude-desktop.nix @@ -17,16 +17,16 @@ }: let pname = "claude-desktop"; - version = "1.1.6452"; + version = "1.1.6679"; srcs = { x86_64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/x64/1.1.6452/Claude-5afc23a0310b20a371d1fbd79ddf31a392ebef25.exe"; - hash = "sha256-1pMUnWsiTtB+2KsyUW/7lxT4pqFoFo1DCAcMID6QTeg="; + url = "https://downloads.claude.ai/releases/win32/x64/1.1.6679/Claude-f8f4ffd55f41cdea65b2c8adb312eb985aef916f.exe"; + hash = "sha256-GsSnbIPKFcOlmbfRT9P/0KXooDyXfmHxikiR5kAr5hE="; }; aarch64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/arm64/1.1.6452/Claude-5afc23a0310b20a371d1fbd79ddf31a392ebef25.exe"; - hash = "sha256-8gsNf5fTvfzYo2uMrd+Lc4B5colMCFIFCfta473Q00k="; + url = "https://downloads.claude.ai/releases/win32/arm64/1.1.6679/Claude-f8f4ffd55f41cdea65b2c8adb312eb985aef916f.exe"; + hash = "sha256-chXouKI/IlXMLzXukhXTkW39uFThiuV/uxJ0b7LFntc="; }; };