Update Claude Desktop download URLs to version 1.4758.0

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-04-25 01:37:46 +00:00
parent aecd25a519
commit 6d281c93b6
2 changed files with 9 additions and 9 deletions

View File

@@ -16,16 +16,16 @@
}:
let
pname = "claude-desktop";
version = "1.3883.0";
version = "1.4758.0";
srcs = {
x86_64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/x64/1.3883.0/Claude-93ff6cb984386882b4bd9b6bca80d4cf5af8e13b.exe";
hash = "sha256-E/pT3eoKNi5LkdKJx+nxGGA5t5ljtajjFAnjHKwbtZE=";
url = "https://downloads.claude.ai/releases/win32/x64/1.4758.0/Claude-fb266c24b61d94290860a3945b138d6d249425f6.exe";
hash = "sha256-bcQLsoAeOulw1/HWqnm5Daux2a6RhKHSdLGZUN/2MhU=";
};
aarch64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/arm64/1.3883.0/Claude-93ff6cb984386882b4bd9b6bca80d4cf5af8e13b.exe";
hash = "sha256-SGK3aE0cFCB5IsSIZPZE03ZgJgEiZfW8YhEf9IyuyYI=";
url = "https://downloads.claude.ai/releases/win32/arm64/1.4758.0/Claude-fb266c24b61d94290860a3945b138d6d249425f6.exe";
hash = "sha256-/Nr5BwwH64XayA+un8X4eclvzXgxKiikHXsb1U8++B0=";
};
};

View File

@@ -24,15 +24,15 @@ detect_architecture() {
case "$raw_arch" in
x86_64)
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.3883.0/Claude-93ff6cb984386882b4bd9b6bca80d4cf5af8e13b.exe'
claude_exe_sha256='13fa53ddea0a362e4b91d289c7e9f1186039b79963b5a8e31409e31cac1bb591'
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.4758.0/Claude-fb266c24b61d94290860a3945b138d6d249425f6.exe'
claude_exe_sha256='6dc40bb2801e3ae970d7f1d6aa79b90dabb1d9ae9184a1d274b19950dff63215'
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.3883.0/Claude-93ff6cb984386882b4bd9b6bca80d4cf5af8e13b.exe'
claude_exe_sha256='4862b7684d1c14207922c48864f644d3766026012265f5bc62111ff48caec982'
claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.4758.0/Claude-fb266c24b61d94290860a3945b138d6d249425f6.exe'
claude_exe_sha256='fcdaf9070c07eb85dac80fae9fc5f879c96fcd78312a28a41d7b1bd54f3ef81d'
architecture='arm64'
claude_exe_filename='Claude-Setup-arm64.exe'
echo 'Configured for arm64 (aarch64) build.'