Skip to content

Commit 716e329

Browse files
committed
fix(nix): refresh npmDepsHash to the lockfile main actually has
The value dated to v1.6.0 on 2026-07-05; package-lock.json moved ten times after that, so `nix build` had been refusing the mismatch ever since. The replacement is what the new check computed from the current lockfile: recorded sha256-IZypOLWlDShIjCKWxlJcrdtIkMu0P/DuXaq4c0HW3FY= expected sha256-SggSPoDnKzmvgXpIGP11y6h390SkoZszeMjFTaokRjQ= #136 carried sha256-cb8loUzQs4fz3um0xbYgtjQdcRZh/Ptk2YPgv3FHP/s=, computed from main as it stood on 2026-07-19 — stale for the same reason, which is why merging it would not have fixed anything.
1 parent f305faa commit 716e329

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nix/package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ buildNpmPackage {
3333
);
3434
};
3535

36-
npmDepsHash = "sha256-IZypOLWlDShIjCKWxlJcrdtIkMu0P/DuXaq4c0HW3FY=";
36+
npmDepsHash = "sha256-SggSPoDnKzmvgXpIGP11y6h390SkoZszeMjFTaokRjQ=";
3737

3838
env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
3939

0 commit comments

Comments
 (0)