d614edeb32
This was supposed to go through a pull request Revert "nodePackages: Regenerate node packages for nodejs 10 & 12" This reverts commit6a17bdf397
. Revert "nodejs-8_x: Drop package" This reverts commite06c97b71d
.
10 lines
385 B
Bash
Executable File
10 lines
385 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p nodePackages.node2nix
|
|
|
|
set -eu -o pipefail
|
|
|
|
rm -f node-env.nix
|
|
node2nix -8 -i node-packages-v8.json -o node-packages-v8.nix -c composition-v8.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
|