Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / node-packages / generate.sh
blobe7a15d5d869c6726ff672801000d411b46c95225
1 #!/usr/bin/env bash
2 set -eu -o pipefail
4 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
5 node2nix=$(nix-build ../../.. -A nodePackages.node2nix)
6 cd ${DIR}
7 rm -f ./node-env.nix
8 ${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix
9 # using --no-out-link in nix-build argument would cause the
10 # gc to run before the script finishes
11 # which would cause a failure
12 # it's safer to just remove the link after the script finishes
13 # see https://github.com/NixOS/nixpkgs/issues/112846 for more details
14 rm ./result