mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
7 lines
244 B
Bash
Executable File
7 lines
244 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
rm -f node-env.nix
|
|
node2nix -i node-packages.json -o node-packages-v4.nix -c composition-v4.nix
|
|
# node2nix doesn't explicitely support node v6 so far
|
|
node2nix -5 -i node-packages.json -o node-packages-v6.nix -c composition-v6.nix
|