fix(nix): migrate pnpm fetchDeps to fetcherVersion 3
Some checks failed
Docker image / build-and-push-image (push) Has been cancelled

fetcherVersion=2 is deprecated and scheduled for removal in nixpkgs
26.11. Migrate to v3 and regenerate the pnpm-deps hash. Supersedes the
prior v2 hash regen (@5ff4e41) — v3 is the durable form and stops the
per-nixpkgs-bump FOD drift the v2 fetcher was causing.

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-20 00:05:19 +02:00
commit e15c9f8a25

View file

@ -47,9 +47,9 @@ stdenv.mkDerivation (finalAttrs: {
pnpmDeps = pnpm_9.fetchDeps { pnpmDeps = pnpm_9.fetchDeps {
inherit (finalAttrs) pname version src; inherit (finalAttrs) pname version src;
fetcherVersion = 2; fetcherVersion = 3;
prePnpmInstall = patchNdk; prePnpmInstall = patchNdk;
hash = "sha256-DE2Ol9uNoRn1vnBqTr7RZX8XZSb2bwXqdFmD93XmYGQ="; hash = "sha256-UFeeMlkyzn3ohe1XNSvMlM0OpBlyJNge9DRXAWW1LsA=";
}; };
postPatch = patchNdk; postPatch = patchNdk;