2020-03-27 02:09:11 -07:00
|
|
|
#!/usr/bin/env bash
|
2018-11-16 02:59:59 -08:00
|
|
|
set -eu -o pipefail
|
|
|
|
|
2020-03-24 09:00:48 -07:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
2021-02-14 18:24:15 -08:00
|
|
|
node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
|
2020-03-24 09:00:48 -07:00
|
|
|
cd ${DIR}
|
2019-10-11 05:45:41 -07:00
|
|
|
rm -f ./node-env.nix
|
2020-05-29 09:22:23 -07:00
|
|
|
${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix
|
2021-02-14 18:24:15 -08: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
|