2020-03-27 09:09:11 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-12-06 20:10:40 +00:00
|
|
|
|
2018-11-16 10:59:59 +00:00
|
|
|
set -eu -o pipefail
|
2021-12-06 20:10:40 +00:00
|
|
|
|
2021-08-12 20:21:41 +01:00
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
2021-12-06 20:10:40 +00:00
|
|
|
|
2021-02-15 02:24:15 +00:00
|
|
|
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
|
2021-12-06 20:10:40 +00:00
|
|
|
|
2019-10-11 13:45:41 +01:00
|
|
|
rm -f ./node-env.nix
|
2021-12-06 20:10:40 +00:00
|
|
|
|
|
|
|
# Track the latest active nodejs LTS here: https://nodejs.org/en/about/releases/
|
2022-03-21 07:19:20 +00:00
|
|
|
"${node2nix}/bin/node2nix" \
|
2021-12-06 20:10:40 +00:00
|
|
|
-i node-packages.json \
|
|
|
|
-o node-packages.nix \
|
|
|
|
-c composition.nix \
|
2022-11-06 10:59:21 +00:00
|
|
|
--pkg-name nodejs_18
|
2021-12-06 20:10:40 +00:00
|
|
|
|
2021-02-15 02:24:15 +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
|