diff --git a/nix/claude-desktop.nix b/nix/claude-desktop.nix index 6a3506d..e8711bd 100644 --- a/nix/claude-desktop.nix +++ b/nix/claude-desktop.nix @@ -16,16 +16,16 @@ }: let pname = "claude-desktop"; - version = "1.5354.0"; + version = "1.6259.0"; srcs = { x86_64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/x64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe"; - hash = "sha256-5hnHvTtnRqcwfr7+UJv+RHoUOu2X5sf2Zmd7Nqa2ulQ="; + url = "https://downloads.claude.ai/releases/win32/x64/1.6259.0/Claude-dc89db3be9b2bc795e0fda0ea3738b035a76ed46.exe"; + hash = "sha256-eNbLYQcyzHSWzTgDxyEubjPn92dggzoh+rnFsoyYD18="; }; aarch64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/arm64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe"; - hash = "sha256-v33l1sASVC/q331cqnenLfzqGyRRLpptKOAEukrioR0="; + url = "https://downloads.claude.ai/releases/win32/arm64/1.6259.0/Claude-dc89db3be9b2bc795e0fda0ea3738b035a76ed46.exe"; + hash = "sha256-yNX/2G5JvwvWi6L/TXvjbM0EnMmHol1AiGsdsCkZdxM="; }; }; diff --git a/scripts/setup/detect-host.sh b/scripts/setup/detect-host.sh index 3411849..a0a1628 100644 --- a/scripts/setup/detect-host.sh +++ b/scripts/setup/detect-host.sh @@ -24,15 +24,15 @@ detect_architecture() { case "$raw_arch" in x86_64) - claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe' - claude_exe_sha256='e619c7bd3b6746a7307ebefe509bfe447a143aed97e6c7f666677b36a6b6ba54' + claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.6259.0/Claude-dc89db3be9b2bc795e0fda0ea3738b035a76ed46.exe' + claude_exe_sha256='78d6cb610732cc7496cd3803c7212e6e33e7f76760833a21fab9c5b28c980f5f' 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.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe' - claude_exe_sha256='bf7de5d6c012542feadf7d5caa77a72dfcea1b24512e9a6d28e004ba4ae2a11d' + claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.6259.0/Claude-dc89db3be9b2bc795e0fda0ea3738b035a76ed46.exe' + claude_exe_sha256='c8d5ffd86e49bf0bd68ba2ff4d7be36ccd049cc987a25d40886b1db029197713' architecture='arm64' claude_exe_filename='Claude-Setup-arm64.exe' echo 'Configured for arm64 (aarch64) build.'