From 5ff4e413be6c554ea010199068b09f3842a94aca Mon Sep 17 00:00:00 2001 From: Padreug Date: Sun, 19 Jul 2026 23:51:53 +0200 Subject: [PATCH] fix(nix): regenerate pnpm-deps hash after nixpkgs fetcher drift 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 Claude-Session: https://claude.ai/code/session_01MRPdZWqJHDt8vLmm1qUyd7 --- package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.nix b/package.nix index 5bf5fdb..4e770f4 100644 --- a/package.nix +++ b/package.nix @@ -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;