From e0b0568d690cf9c1956dac607211432665d44ae6 Mon Sep 17 00:00:00 2001 From: iris Date: Thu, 16 Jul 2026 18:33:59 +0200 Subject: [PATCH] fix(frontend): update npmDepsHash for bumped lockfile package-lock.json was updated in 9edd3750 (dompurify/marked/esbuild bumps) but npmDepsHash in nix/packages/frontend.nix wasn't recomputed, breaking the frontend FOD build on main (hash mismatch, fixes #2539). Recomputed via prefetch-npm-deps frontend/package-lock.json. --- nix/packages/frontend.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/packages/frontend.nix b/nix/packages/frontend.nix index 242752b5..75ba75dd 100644 --- a/nix/packages/frontend.nix +++ b/nix/packages/frontend.nix @@ -40,7 +40,7 @@ buildNpmPackage { # Update whenever the lockfile changes. Recompute locally with the # same command (`pkgs.prefetch-npm-deps`), or let the build fail # and copy the actual hash from the error message. - npmDepsHash = "sha256-/aklU+l5HqSs4l68gf9J3mgyKM30reBgTkaEjtx2MNY="; + npmDepsHash = "sha256-jRHMoaE4z9T/K+OfpXorYwGGo4Fp2Dk/+wTMR56kmdA="; # `npm run build` recurses into all workspaces (`--workspaces # --if-present`). The workspaces' build scripts each run their own