Commit c28e4efd authored by Markus Hauck's avatar Markus Hauck
Browse files

claude-code: 1.0.96 -> 1.0.98

Changelog: https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md

- Settings: /doctor now validates permission rule syntax and suggests corrections (1.0.97)
- Additional improvements and bug fixes for version 1.0.98
parent f770149a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@
  "packages": {
    "": {
      "dependencies": {
        "@anthropic-ai/claude-code": "^1.0.96"
        "@anthropic-ai/claude-code": "^1.0.98"
      }
    },
    "node_modules/@anthropic-ai/claude-code": {
      "version": "1.0.96",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.96.tgz",
      "integrity": "sha512-xnxhYzuh6PYlMcw56REMQiGMW20WaLLOvG8L8TObq70zhNKs3dro7nhYwHRe1c2ubTr20oIJK0aSkyD2BpO8nA==",
      "version": "1.0.98",
      "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.98.tgz",
      "integrity": "sha512-IV193Eh8STdRcN3VkNcojPIlLnQPch+doBVrDSEV1rPPePISy7pzHFZL0Eg7zIPj9gHkHV1D2s0RMMwzVXJThA==",
      "license": "SEE LICENSE IN README.md",
      "bin": {
        "claude": "cli.js"
+3 −3
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

buildNpmPackage rec {
  pname = "claude-code";
  version = "1.0.96";
  version = "1.0.98";

  nodejs = nodejs_20; # required for sandboxed Nix builds on Darwin

  src = fetchzip {
    url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz";
    hash = "sha256-w3KT+dZbrcrwnOl9ByZ43nuSN9ON078kCqxF7fIZ7AA=";
    hash = "sha256-Dkaj97FuRp6LmZgsmzKRX9PKp7bzvUj7rUD3b/5CxtU=";
  };

  npmDepsHash = "sha256-qjg3gUmqlPfngnWRfADZlAK89aOoKtCkQkCXKjVPNFk=";
  npmDepsHash = "sha256-rcULDhcHZm16LKzceIu6gRH/Q1HBCpIJFfZRMVkhiiQ=";

  postPatch = ''
    cp ${./package-lock.json} package-lock.json