Skip to content

Commit e99b6ee

Browse files
committed
Merge branch 'k3d3-main'
2 parents d009ff7 + 51b4028 commit e99b6ee

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

pkgs/claude-desktop.nix

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@
1212
patchy-cnb,
1313
perl,
1414
# Allow overriding Claude executable parameters
15-
claudeHash ? "sha256-ISyVjtr9vGzCqq7oaDQd6h9kC7iumyo38z9VjuVCsu4=",
16-
claudeVersion ? "0.12.129",
15+
claudeHash ? "sha256-U7jpTk8pU7SUHKxTomQ3BLjspUsNU2r8fEWktaviYj4=",
16+
claudeVersion ? "0.13.37",
1717
claudeUrl ? "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/Claude-Setup-x64.exe"
1818
}: let
1919
pname = "claude-desktop";
20-
version = claudeVersion;
20+
version = "0.13.37";
2121
srcExe = fetchurl {
22-
# Use the provided URL and version, or defaults
23-
url = "${claudeUrl}?v=${version}";
24-
# Hash can be overridden via flake input
25-
hash = claudeHash;
22+
# NOTE: `?v=0.10.0` doesn't actually request a specific version. It's only being used here as a cache buster.
23+
url = "https://storage.googleapis.com/osprey-downloads-c02f6a0d-347c-492b-a752-3e0651722e97/nest-win-x64/Claude-Setup-x64.exe?v=${version}";
24+
hash = "sha256-U7jpTk8pU7SUHKxTomQ3BLjspUsNU2r8fEWktaviYj4=";
2625
};
2726
in
2827
stdenvNoCC.mkDerivation rec {

0 commit comments

Comments
 (0)