mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
7067000393
Node.js 14 is EOL. https://github.com/NixOS/nixpkgs/pull/229910 Package changelog: https://github.com/psi-4ward/psitransfer/releases Package compare v2.0.1...v2.1.2: https://github.com/psi-4ward/psitransfer/compare/v2.0.1...v2.1.2
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p nodePackages.node2nix
|
|
set -euo pipefail
|
|
|
|
node2nix \
|
|
--nodejs-18 \
|
|
--input node-packages.json \
|
|
--output node-packages.nix \
|
|
--composition node-composition.nix \
|
|
--node-env ../../development/node-packages/node-env.nix \
|
|
;
|