corestore: 7.1.0 -> 7.4.5 (#430630)

This commit is contained in:
Cosima Neidahl 2025-08-03 18:38:51 +02:00 committed by GitHub
commit 395084d8d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 633 additions and 275 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7,20 +7,21 @@
buildNpmPackage (finalAttrs: {
pname = "corestore";
version = "7.1.0";
version = "7.4.5";
src = fetchFromGitHub {
owner = "holepunchto";
repo = "corestore";
tag = "v${finalAttrs.version}";
hash = "sha256-lbbjYWJah1A2/ySBTI2Mg78dRjLyt/TJ5rhqBPxWOps=";
hash = "sha256-wuf7bPxHuzic2B4HCH7emM1+jc7gw+l5Sm/LCYnpvs4=";
};
npmDepsHash = "sha256-3WfcomAOE+u/ZIn5M+sP/GkxArXx5IRFzf0IG4ykaiU=";
npmDepsHash = "sha256-hQYvQeTwlIWImdNhgpnJjDC24Fx4G0eST7tptWV1Xgw=";
dontNpmBuild = true;
# ERROR: Missing package-lock.json from src
# Upstream doesn't want to maintain a lockfile in their repo: https://github.com/holepunchto/corestore/issues/119
# Copy vendored package-lock.json to src via postPatch
postPatch = ''
cp ${./package-lock.json} ./package-lock.json