Skip to content

Commit

Permalink
chore: fill in new hashes for x86_64-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrus committed Mar 21, 2024
1 parent 7637aa6 commit d194a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/internal/x86_64-windows.nix
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ in rec {
nodejs = pkgs.fetchzip {
name = "node-v${common.nodejs.version}-win-x64.zip";
url = "https://nodejs.org/dist/v${common.nodejs.version}/node-v${common.nodejs.version}-win-x64.zip";
hash = "";
hash = "sha256-n8ux67xrq3Rta1nE715y1m040oaLxUI2bIt12RaJdeM=";
};

python = pkgs.fetchzip {
Expand Down Expand Up @@ -561,15 +561,15 @@ in rec {
electron = pkgs.fetchurl {
name = "electron-v${electronVersion}-win32-x64.zip";
url = "https://github.com/electron/electron/releases/download/v${electronVersion}/electron-v${electronVersion}-win32-x64.zip";
hash = "";
hash = "sha256-R8jxX41cduvqFb+/fA+UvixHQ45+alePS1gyScSZTEc=";
};

# XXX: normally, node-gyp would download it only for Windows,
# XXX: see `resolveLibUrl()` in `node-gyp/lib/process-release.js`
node-lib = pkgs.fetchurl {
name = "node.lib-${electronVersion}"; # cache invalidation
url = "https://electronjs.org/headers/v${electronVersion}/win-x64/node.lib";
hash = "";
hash = "sha256-5lKdTXZDXu/3o7mTbdEArU8+ZQHVkEQGoVO4V0XUlKQ=";
};
};

Expand Down

0 comments on commit d194a20

Please sign in to comment.