From 820d25c5bfa22b134cbff753db04d0d0569f8ae1 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Mon, 11 May 2026 22:41:30 -0400 Subject: [PATCH] fix(nix): refresh dashboard lockfile hash Update the web npm deps hash in nix/web.nix to match the committed apps/dashboard/package-lock.json so bb/gui passes the nix lockfile check. --- nix/web.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/web.nix b/nix/web.nix index 715a7792fa5..f8190f275a7 100644 --- a/nix/web.nix +++ b/nix/web.nix @@ -5,7 +5,7 @@ let npmDeps = pkgs.fetchNpmDeps { inherit src; npmRoot = "dashboard"; - hash = "sha256-HWB1piIPglTXbzQHXFYHLgVZIbDb60esupXSQGa1+lI="; + hash = "sha256-jJsVp3Dz+6/GaruxcUSby+G1vVB+nHHlu1tFWE9wQZQ="; }; npm = hermesNpmLib.mkNpmPassthru { folder = "apps/dashboard"; attr = "web"; pname = "hermes-web"; };