nodePackages: use node2nix from git

This commit is contained in:
Jörg Thalheim 2020-03-27 09:09:11 +00:00
parent 62831e1023
commit b2cfb3131d
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -1,11 +1,11 @@
#!/usr/bin/env nix-shell #!/usr/bin/env bash
#! nix-shell -p nodePackages.node2nix -i bash
set -eu -o pipefail set -eu -o pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
node2nix=$(nix-build ../../.. --no-out-link -A nodePackages.node2nix)
cd ${DIR} cd ${DIR}
rm -f ./node-env.nix rm -f ./node-env.nix
for version in 10 12 13; do for version in 10 12 13; do
node2nix --nodejs-$version -i node-packages-v$version.json -o node-packages-v$version.nix -c composition-v$version.nix "${node2nix}/bin/node2nix" --nodejs-$version -i node-packages-v$version.json -o node-packages-v$version.nix -c composition-v$version.nix
done done