a3bbb45e5c
fixes #18609
634 B
634 B
Node.js packages
To add a package from NPM to nixpkgs:
- Install node2nix:
nix-env -f '<nixpkgs>' -iA node2nix
. - Modify
pkgs/development/node-packages/node-packages.json
, to add, update, or remove package entries. - Run the script:
cd pkgs/development/node-packages && sh generate.sh
. - Build your new package to test your changes:
cd /path/to/nixpkgs && nix-build -A nodePackages.<new-or-updated-package>
. To build against a specific node.js version (e.g. 5.x):nix-build -A nodePackages_5_x.<new-or-updated-package>
- Add, commit, and share your changes!