Update Claude Desktop download URLs to version 1.1.5749

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-09 01:39:07 +00:00
parent c31329e3da
commit eca7c8083f
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.5368/Claude-d12d0218c6c7bc46d52919117bd57508c591a8ad.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.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.5368/Claude-d12d0218c6c7bc46d52919117bd57508c591a8ad.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.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.5368";
version = "1.1.5749";
srcs = {
x86_64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/x64/1.1.5368/Claude-d12d0218c6c7bc46d52919117bd57508c591a8ad.exe";
hash = "sha256-6rxkjTXQyGCuXn63cYXWROGegyeiUoGzOfaO6jgxxME=";
url = "https://downloads.claude.ai/releases/win32/x64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe";
hash = "sha256-8IEOzro7CkqliI6P7+IQN4516l3coqzyBS8T4MEVYB8=";
};
aarch64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.5368/Claude-d12d0218c6c7bc46d52919117bd57508c591a8ad.exe";
hash = "sha256-sIGM27d50mcRnzG6lkM+fxwwhxSB4qZTkslmpS9TKJk=";
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.5749/Claude-ecf3d94e6eb8c8af9caed33a16c58e199abe2aec.exe";
hash = "sha256-/aMNLq9Z8AXnaNgQ04NvS08IhsJOeQ0xqLEf9qrgDUE=";
};
};