Skip to content

Commit

Permalink
Updated to base32 hashes for v16.14.2 and specified target node range…
Browse files Browse the repository at this point in the history
… for pkg builds
  • Loading branch information
CMCDragonkai committed Apr 25, 2022
1 parent ee2125c commit 80276de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let
buildPhase = ''
cp ${./package.json} package.json
pkg . \
--targets linux-${arch} \
--targets node${utils.nodeVersion}-linux-${arch} \
--no-bytecode \
--public \
--public-packages "*" \
Expand All @@ -44,7 +44,7 @@ let
buildPhase = ''
cp ${./package.json} package.json
pkg . \
--targets win-${arch} \
--targets node${utils.nodeVersion}-win-${arch} \
--no-bytecode \
--public \
--public-packages "*" \
Expand All @@ -70,7 +70,7 @@ let
buildPhase = ''
cp ${./package.json} package.json
pkg . \
--targets macos-${arch} \
--targets node${utils.nodeVersion}-macos-${arch} \
--no-bytecode \
--public \
--public-packages "*" \
Expand Down
6 changes: 3 additions & 3 deletions utils.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ rec {
"3.3" = {
"linux-x64" = fetchurl {
url = "https://github.com/vercel/pkg-fetch/releases/download/v3.3/node-v16.14.2-linux-x64";
sha256 = "8fe5316565d6fc759aed4eae650064273567bcfb30d841b75b18ffb396a4babc";
sha256 = "1g5sljbb7zqqbfvl3n1hzfy6fd97ch06bbjfxnd7bz6ncmjk3rcg";
};
"win32-x64" = fetchurl {
url = "https://github.com/vercel/pkg-fetch/releases/download/v3.3/node-v16.14.2-win-x64";
sha256 = "f569a056424242da69e41987b418c3e2eff84a5e2b36601f4ea4babc1dca2eb0";
sha256 = "1c1fr8fvrfm49qgn0dibbr5givz2qccb91qrwilxlhj289ba0sgm";
};
"macos-x64" = fetchurl {
url = "https://github.com/vercel/pkg-fetch/releases/download/v3.3/node-v16.14.2-macos-x64";
sha256 = "5bb0e5fd25bdda12ef510df0a27d468c756535a8341c9f44764bb0bf01d907c3";
sha256 = "1hq7v40vzc2bfr29y71lm0snaxcc8rys5w0da7pi5nmx4pyybc2v";
};
};
};
Expand Down

0 comments on commit 80276de

Please sign in to comment.