fix(nix): regenerate pnpm-deps hash after nixpkgs fetcher drift
Some checks failed
Docker image / build-and-push-image (push) Has been cancelled
Some checks failed
Docker image / build-and-push-image (push) Has been cancelled
The pnpm v2 FOD hash drifted against the current nixpkgs pin (the fetchPnpmDeps fetcherVersion=2 output format changed), breaking every downstream build with a hash mismatch. Update to the current value. fetcherVersion=2 is deprecated (removal in 26.11); migrating to v3 is a separate follow-up. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MRPdZWqJHDt8vLmm1qUyd7
This commit is contained in:
parent
1f4afbf1c2
commit
5ff4e413be
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
inherit (finalAttrs) pname version src;
|
inherit (finalAttrs) pname version src;
|
||||||
fetcherVersion = 2;
|
fetcherVersion = 2;
|
||||||
prePnpmInstall = patchNdk;
|
prePnpmInstall = patchNdk;
|
||||||
hash = "sha256-DkFzzsQTuptRR8+rWfr9RGC+5XjSQrZlsZtspWfBW8w=";
|
hash = "sha256-DE2Ol9uNoRn1vnBqTr7RZX8XZSb2bwXqdFmD93XmYGQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = patchNdk;
|
postPatch = patchNdk;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue