nixpkgs/pkgs/development/node-packages/generate.sh
Jörg Thalheim 216c58a2ad
nodePackages: fix broken update script
The computed path was wrong and references within the file where
wrong as well due to the temporary directory.
2020-03-25 07:33:02 +00:00

12 lines
350 B
Bash
Executable file

#!/usr/bin/env nix-shell
#! nix-shell -p nodePackages.node2nix -i bash
set -eu -o pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd ${DIR}
rm -f ./node-env.nix
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
done