Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
24 lines
650 B
Bash
Executable File
24 lines
650 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
|
|
|
|
rm -f ./node-env.nix
|
|
|
|
# Track the latest active nodejs LTS here: https://nodejs.org/en/about/releases/
|
|
"${node2nix}/bin/node2nix" \
|
|
-i node-packages.json \
|
|
-o node-packages.nix \
|
|
-c composition.nix \
|
|
--pkg-name nodejs_22
|
|
|
|
# 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
|