nixpkgs/pkgs/development/node-packages/generate.sh
Kevin Cox cb51834f94
node-packages: Fix generate when running from a different directory.
Previously it would try to run the build before changing directory which would fail to find the nixpkgs default.nix.

Also simplified the script a little to remove the variable that was only used to change directory.
2021-08-12 15:21:41 -04:00

13 lines
516 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
${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix
# 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