claude-code: 2.1.19 -> 2.1.20

https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md
This commit is contained in:
Markus Hauck
2026-01-27 08:23:32 +01:00
parent da45b58ed3
commit 1fa5d44aa4
2 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@anthropic-ai/claude-code",
"version": "2.1.19",
"version": "2.1.20",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@anthropic-ai/claude-code",
"version": "2.1.19",
"version": "2.1.20",
"license": "SEE LICENSE IN README.md",
"bin": {
"claude": "cli.js"
+7 -3
View File
@@ -15,19 +15,23 @@
}:
buildNpmPackage (finalAttrs: {
pname = "claude-code";
version = "2.1.19";
version = "2.1.20";
src = fetchzip {
url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz";
hash = "sha256-K2fJf1eRAyqmtAvKBzpAtMohQ4B1icwC9yf5zEf52C8=";
hash = "sha256-V2BIqUUJnQpjIsCAAk932L8wp5T74s22q3KgFoxfdDg=";
};
npmDepsHash = "sha256-C8HVKSz1ZQmYNMoLUKk2XUpf5y+Np4nTacCGMVEqO8c=";
npmDepsHash = "sha256-X8j7httM9qMpAPR11oDAWwDpkxZ2bc20y6ruMoStMsQ=";
strictDeps = true;
postPatch = ''
cp ${./package-lock.json} package-lock.json
# https://github.com/anthropics/claude-code/issues/15195
substituteInPlace cli.js \
--replace-warn '#!/bin/sh' '#!/usr/bin/env sh'
'';
dontNpmBuild = true;