mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
9 lines
302 B
Bash
Executable file
9 lines
302 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
node2nix=$(nix-build ../../.. --no-out-link -A nodePackages.node2nix)
|
|
|
|
cd ${DIR}
|
|
rm -f ./node-env.nix
|
|
${node2nix}/bin/node2nix -i node-packages.json -o node-packages.nix -c composition.nix
|