From 45e2f4fdcd760b0072eecb32b7b9c00b62c17b98 Mon Sep 17 00:00:00 2001 From: xxxigm Date: Mon, 15 Jun 2026 22:44:07 +0700 Subject: [PATCH] nix: refresh npmDepsHash for the @assistant-ui/store pin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The store pin changed package-lock.json, so the workspace-wide npmDepsHash in nix/lib.nix is stale and the Nix flake check fails on the hash mismatch. Use the hash reported by the real fetchNpmDeps build (the flake check's `got:`), which is authoritative — it differs from prefetch-npm-deps' lockfile-contents hash, exactly the divergence nix/lib.nix already documents. --- nix/lib.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/lib.nix b/nix/lib.nix index df5898004f5..dea1d48b4c8 100644 --- a/nix/lib.nix +++ b/nix/lib.nix @@ -21,7 +21,7 @@ let # Single npm deps fetch from the workspace root lockfile. # All workspace packages share this derivation. - npmDepsHash = "sha256-C7eu7WkT0z2XTey/2tnjg7vVBw9XhQMSDhFkUzT/+HI="; + npmDepsHash = "sha256-m9cjbjzi4SaFCjODfdrawS5e+1ag+MpRn528/upSNqo="; npmDeps = pkgs.fetchNpmDeps { inherit src;