Skip to content

Commit d9abdd0

Browse files
committed
fix(nix): refresh npmDepsHash for the electron-builder bump
The value #244 left behind describes the dependency set before electron-builder moved to 26.15.3, and that upgrade re-resolves a lot: 7zip-bin, app-builder-bin, dmg-license and iconv-corefoundation drop out while pkijs, asn1js, unzipper and @noble/hashes come in, because upstream moved code signing off vendored native binaries onto JS. So the recorded hash no longer matches and `nix build` fails outright for anyone installing through that channel. Taken from the Nix job's own output on this branch rather than computed blind.
1 parent 4d86d74 commit d9abdd0

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
@@ -37,7 +37,7 @@ buildNpmPackage {
3737
);
3838
};
3939

40-
npmDepsHash = "sha256-appTO8HilRS3R5ngGTzIp/txHyjui6z0Q+l1Vf36dHs=";
40+
npmDepsHash = "sha256-ArM73XLVYUB+92Pz7sCbh4Fj67xwakEusaaOSjxMEe8=";
4141

4242
env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
4343

0 commit comments

Comments
 (0)