Update Claude Desktop download URLs to version 1.1.6041

Updated download URLs resolved from official redirect endpoints.

🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
github-actions[bot]
2026-03-11 01:38:16 +00:00
parent 6035523c59
commit f9df6effbd
2 changed files with 7 additions and 7 deletions

View File

@@ -77,13 +77,13 @@ detect_architecture() {
case "$raw_arch" in
x86_64)
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.6041/Claude-62e193c55a57c09a3640f5cf09c3759e802a4d46.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.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.1.6041/Claude-62e193c55a57c09a3640f5cf09c3759e802a4d46.exe'
architecture='arm64'
claude_exe_filename='Claude-Setup-arm64.exe'
echo 'Configured for arm64 (aarch64) build.'

View File

@@ -17,16 +17,16 @@
}:
let
pname = "claude-desktop";
version = "1.1.5749";
version = "1.1.6041";
srcs = {
x86_64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/x64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe";
hash = "sha256-8IEOzro7CkqliI6P7+IQN4516l3coqzyBS8T4MEVYB8=";
url = "https://downloads.claude.ai/releases/win32/x64/1.1.6041/Claude-62e193c55a57c09a3640f5cf09c3759e802a4d46.exe";
hash = "sha256-JvvZAQTsi7rcp6Ur+94DdcMfmCaaSqQ4eT+8WKWewrU=";
};
aarch64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe";
hash = "sha256-/aMNLq9Z8AXnaNgQ04NvS08IhsJOeQ0xqLEf9qrgDUE=";
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.6041/Claude-62e193c55a57c09a3640f5cf09c3759e802a4d46.exe";
hash = "sha256-IMsIFCxdM80krWDQEnW1BwDz0FdfnB9is/otxckNOKQ=";
};
};