diff --git a/overlays/unstable/claude-code/package-lock.json b/overlays/unstable/claude-code/package-lock.json index efab5fb..c9df2e8 100644 --- a/overlays/unstable/claude-code/package-lock.json +++ b/overlays/unstable/claude-code/package-lock.json @@ -5,13 +5,13 @@ "packages": { "": { "dependencies": { - "@anthropic-ai/claude-code": "^0.2.99" + "@anthropic-ai/claude-code": "^0.2.106" } }, "node_modules/@anthropic-ai/claude-code": { - "version": "0.2.99", - "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-0.2.99.tgz", - "integrity": "sha512-KG+pFtiqSRmrSzcBRtgiPSqu9zaGg7GIlppKLEyDBlTn9M9JJbe1SLY5W8eB2AXC/fro+ePmM9cHzHO+zhkr7g==", + "version": "0.2.106", + "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-0.2.106.tgz", + "integrity": "sha512-bryGjkA4VhQ4E7McxHVGgectYP/J9zhtkOP9nMNkLPepi5m85tyPHOZgTIhA3R3N7wrIRHPlpMv5y2GjGOo5TQ==", "hasInstallScript": true, "license": "SEE LICENSE IN README.md", "dependencies": { diff --git a/overlays/unstable/claude-code/package.nix b/overlays/unstable/claude-code/package.nix index 5eca76e..a48d903 100644 --- a/overlays/unstable/claude-code/package.nix +++ b/overlays/unstable/claude-code/package.nix @@ -1,19 +1,22 @@ -{ lib -, buildNpmPackage -, fetchzip -, +{ + lib, + buildNpmPackage, + fetchzip, + nodejs_20, }: buildNpmPackage rec { pname = "claude-code"; - version = "0.2.99"; + version = "0.2.106"; + + nodejs = nodejs_20; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz"; - hash = "sha256-MfzhISp36niovUMPU8vC+a3PTp53PpOHeGacH6nj/PY="; + hash = "sha256-hS/aPB4hL1+jeJjIu+ztS2TVLO4lL7IKhBTMXlRO58Y="; }; - npmDepsHash = "sha256-pe2WSDovHvAsx4SYr+a/fTRrpYPya68S10mUWvv18M4="; + npmDepsHash = "sha256-HZ3d04tLeZkSLACIu79K5QIYpkYNcSyvp07OXIgFdss="; postPatch = '' cp ${./package-lock.json} package-lock.json