Unverified Commit 9259e1d2 authored by Domen Kožar's avatar Domen Kožar Committed by GitHub
Browse files

claude-code: 0.2.62 -> 0.2.65 (#396976)

parents 6b909b11 9846bd61
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
  "packages": {
    "": {
      "dependencies": {
        "@anthropic-ai/claude-code": "^0.2.62"
        "@anthropic-ai/claude-code": "^0.2.65"
      }
    },
    "node_modules/@anthropic-ai/claude-code": {
      "version": "0.2.62",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-0.2.62.tgz",
      "integrity": "sha512-Mod9/kbqKy344lm5YmDJLn8dR3HYlA2zGCQy4exU7hmECNqg3KlTAz8u4O4YdiRMxXeUJ3Izi9YSJUT7oZOKdg==",
      "version": "0.2.65",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-0.2.65.tgz",
      "integrity": "sha512-LCxFb/WeHoHfVhQfEQGbGlFURYCm5Brcff4GHD+lVX2N3GtexLTcf0iXElAYz3S2vlWX9km8nGVfB/Yd/ieVUw==",
      "hasInstallScript": true,
      "license": "SEE LICENSE IN README.md",
      "bin": {
+4 −5
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

buildNpmPackage rec {
  pname = "claude-code";
  version = "0.2.62";
  version = "0.2.65";

  src = fetchzip {
    url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz";
    hash = "sha256-O6jkpx3OxEh/npZjyJb+osoeJrG+HZ6NRB9T4EMkdf8=";
    hash = "sha256-4YFdDEpKi7agSqJUetcItqElec5VD0uQARwDSsh1S8o=";
  };

  npmDepsHash = "sha256-tVA4VbPaPc+KwZzUK0QI9In3QSXXoELaNM2U65wxGGA=";
  npmDepsHash = "sha256-157BP/8DfEBE2dhOYj3CGzlV7M2EE44L0Zr0qwAQoQw=";

  postPatch = ''
    cp ${./package-lock.json} package-lock.json
@@ -24,8 +24,7 @@ buildNpmPackage rec {
  AUTHORIZED = "1";

  # `claude-code` tries to auto-update by default, this disables that functionality.
  # Note that the `DISABLE_AUTOUPDATER` environment variable is not documented, so this trick may
  # not continue to work.
  # https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview#environment-variables
  postInstall = ''
    wrapProgram $out/bin/claude \
      --set DISABLE_AUTOUPDATER 1