Skip to content

Commit 114cfb7

Browse files
committed
fix(nix): resync npmDepsHash after upstream merge (#352)
The 182-commit upstream sync (PR #352) changed package-lock.json, so the pinned npmDepsHash in nix/lib.nix went stale and the nix flake-check failed (advisory, non-blocking, but breaks the nix build on main). Bumped to the hash fetchNpmDeps actually computes for the merged lockfile (the authoritative 'got:' from CI, which fix-lockfiles itself prefers over the prefetch-npm-deps guess). No package-lock.json change — this path only updates the hash. Co-Authored-By: Hermes Evolution <<REDACTED:email:5484c254e0d8265e80a4c422e37c84ac>>
1 parent 6ddc2d0 commit 114cfb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nix/lib.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let
2121

2222
# Single npm deps fetch from the workspace root lockfile.
2323
# All workspace packages share this derivation.
24-
npmDepsHash = "sha256-kbjJksq7limRIYqP3DwI+GNgCXkG96tXcsQqmuEedxo=";
24+
npmDepsHash = "sha256-rcZA9b/e02qQOvurztSkpQWrGyS2QL8pn0Jc8wuGs2c=";
2525

2626
npmDeps = pkgs.fetchNpmDeps {
2727
inherit src;

0 commit comments

Comments
 (0)