2020-03-27 12:09:11 +03:00
|
|
|
#!/usr/bin/env bash
|
2018-11-16 13:59:59 +03:00
|
|
|
set -eu -o pipefail
|
2021-08-12 22:21:41 +03:00
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
2021-02-15 05:24:15 +03:00
|
|
|
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
|
2019-10-11 15:45:41 +03:00
|
|
|
rm -f ./node-env.nix
|
2021-12-06 23:07:49 +03:00
|
|
|
${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix --pkg-name nodejs-14_x
|
2021-02-15 05:24:15 +03: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
|