2544b1b495
Changelog: + https://github.com/nodejs/node/releases/tag/v13.0.0 + https://github.com/nodejs/node/releases/tag/v13.0.1
11 lines
477 B
Bash
Executable File
11 lines
477 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -I nixpkgs=../../.. -i bash -p nodePackages.node2nix
|
|
# NOTE: Script must be run from the node-packages directory
|
|
|
|
set -eu -o pipefail
|
|
|
|
rm -f node-env.nix
|
|
node2nix --nodejs-10 -i node-packages-v10.json -o node-packages-v10.nix -c composition-v10.nix
|
|
node2nix --nodejs-12 -i node-packages-v12.json -o node-packages-v12.nix -c composition-v12.nix
|
|
node2nix --nodejs-13 -i node-packages-v13.json -o node-packages-v13.nix -c composition-v13.nix
|