2020-04-24 23:36:52 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
set -eu -o pipefail
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2021-08-18 13:19:15 +00:00
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2021-02-16 17:04:54 +00:00
|
|
|
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
rm -f ./node-env.nix
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
# Track the latest active nodejs LTS here: https://nodejs.org/en/about/releases/
|
2022-03-30 09:31:56 +00:00
|
|
|
"${node2nix}/bin/node2nix" \
|
2021-12-19 01:06:50 +00:00
|
|
|
-i node-packages.json \
|
|
|
|
-o node-packages.nix \
|
|
|
|
-c composition.nix \
|
|
|
|
--pkg-name nodejs-14_x
|
|
|
|
|
2021-02-16 17:04:54 +00:00
|
|
|
# using --no-out-link in nix-build argument would cause the
|
|
|
|
# gc to run before the script finishes
|
|
|
|
# which would cause a failure
|
|
|
|
# it's safer to just remove the link after the script finishes
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/112846 for more details
|
|
|
|
rm ./result
|