Merge origin/main into feature/checksum-validation

Resolve conflict: take main's updated URLs (v1.1.7714) while
keeping the new claude_exe_sha256 variable from this branch.

Co-Authored-By: Claude <claude@anthropic.com>
This commit is contained in:
aaddrick
2026-03-20 08:46:45 -04:00
2 changed files with 7 additions and 7 deletions

View File

@@ -103,14 +103,14 @@ detect_architecture() {
case "$raw_arch" in
x86_64)
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.7464/Claude-2809b60543935626ef2d64d6bed0988205948463.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.1.7714/Claude-3bd6f69326a0abac98bb269c29140e2a543cad64.exe'
claude_exe_sha256=''
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.7464/Claude-2809b60543935626ef2d64d6bed0988205948463.exe'
claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.1.7714/Claude-3bd6f69326a0abac98bb269c29140e2a543cad64.exe'
claude_exe_sha256=''
architecture='arm64'
claude_exe_filename='Claude-Setup-arm64.exe'

View File

@@ -16,16 +16,16 @@
}:
let
pname = "claude-desktop";
version = "1.1.7464";
version = "1.1.7714";
srcs = {
x86_64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/x64/1.1.7464/Claude-2809b60543935626ef2d64d6bed0988205948463.exe";
hash = "sha256-6osUxRaofQWzsUq7iD/9GmBEOXMyMaYnC0/ShLKPYHk=";
url = "https://downloads.claude.ai/releases/win32/x64/1.1.7714/Claude-3bd6f69326a0abac98bb269c29140e2a543cad64.exe";
hash = "sha256-PTcVUtJtENiAxaq+5hjzq2lb17FG1+Z7T+pdmMyoe8Q=";
};
aarch64-linux = fetchurl {
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.7464/Claude-2809b60543935626ef2d64d6bed0988205948463.exe";
hash = "sha256-5Ao+1NUvG4dz0G19Hz3IBEscZNycT/IJxpS51WZPdpA=";
url = "https://downloads.claude.ai/releases/win32/arm64/1.1.7714/Claude-3bd6f69326a0abac98bb269c29140e2a543cad64.exe";
hash = "sha256-dTiKA4gkN9vgXHcMEVjc7g4tQsBJpbOkcJwH6vm2rgU=";
};
};