mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
692 B
692 B
Node.js packages
To add a package from NPM to nixpkgs:
- Modify
pkgs/development/node-packages/node-packages.json
, to add, update, or remove package entries. (orpkgs/development/node-packages/node-packages-v4.json
for packagages depending on node.js 4.x) - 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_4_x.<new-or-updated-package>
- Add and commit all modified and generated files.