fix(nix): regenerate pnpm-deps hash after nixpkgs fetcher drift
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:
Padreug 2026-07-19 23:51:53 +02:00
commit 5ff4e413be

View file

@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
inherit (finalAttrs) pname version src;
fetcherVersion = 2;
prePnpmInstall = patchNdk;
hash = "sha256-DkFzzsQTuptRR8+rWfr9RGC+5XjSQrZlsZtspWfBW8w=";
hash = "sha256-DE2Ol9uNoRn1vnBqTr7RZX8XZSb2bwXqdFmD93XmYGQ=";
};
postPatch = patchNdk;