mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
695 B
695 B
Node.js packages
To add a package from NPM to nixpkgs:
- Modify
pkgs/development/node-packages/node-packages-v6.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 && ./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. 4.x):nix-build -A nodePackages_4_x.<new-or-updated-package>
- Add and commit all modified and generated files.