diff --git a/nix/claude-desktop.nix b/nix/claude-desktop.nix index 3ddbfd5..54ae4c1 100644 --- a/nix/claude-desktop.nix +++ b/nix/claude-desktop.nix @@ -16,16 +16,16 @@ }: let pname = "claude-desktop"; - version = "1.5220.0"; + version = "1.5354.0"; srcs = { x86_64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/x64/1.5220.0/Claude-082bd4a1e25419f80bc323c6a98b8076e753d5c8.exe"; - hash = "sha256-0dQh26r46H/5q20Vy9XBZ8gpZJLnCdDBL6uK3a6xE0w="; + url = "https://downloads.claude.ai/releases/win32/x64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe"; + hash = "sha256-5hnHvTtnRqcwfr7+UJv+RHoUOu2X5sf2Zmd7Nqa2ulQ="; }; aarch64-linux = fetchurl { - url = "https://downloads.claude.ai/releases/win32/arm64/1.5220.0/Claude-082bd4a1e25419f80bc323c6a98b8076e753d5c8.exe"; - hash = "sha256-C52V9RVAzJ3ldpnsQY2s+59t5V2Q426owfQ1fgtr99g="; + url = "https://downloads.claude.ai/releases/win32/arm64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe"; + hash = "sha256-v33l1sASVC/q331cqnenLfzqGyRRLpptKOAEukrioR0="; }; }; diff --git a/scripts/setup/detect-host.sh b/scripts/setup/detect-host.sh index 5f3db3c..3411849 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.5220.0/Claude-082bd4a1e25419f80bc323c6a98b8076e753d5c8.exe' - claude_exe_sha256='d1d421dbaaf8e87ff9ab6d15cbd5c167c8296492e709d0c12fab8addaeb1134c' + claude_download_url='https://downloads.claude.ai/releases/win32/x64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe' + claude_exe_sha256='e619c7bd3b6746a7307ebefe509bfe447a143aed97e6c7f666677b36a6b6ba54' 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.5220.0/Claude-082bd4a1e25419f80bc323c6a98b8076e753d5c8.exe' - claude_exe_sha256='0b9d95f51540cc9de57699ec418dacfb9f6de55d90e36ea8c1f4357e0b6bf7d8' + claude_download_url='https://downloads.claude.ai/releases/win32/arm64/1.5354.0/Claude-9a9e3d5a4a368f0f49a80dc303b0ed1a18bfedad.exe' + claude_exe_sha256='bf7de5d6c012542feadf7d5caa77a72dfcea1b24512e9a6d28e004ba4ae2a11d' architecture='arm64' claude_exe_filename='Claude-Setup-arm64.exe' echo 'Configured for arm64 (aarch64) build.'