JS devs found a new way to be annoying - adjust code accordingly. Have also put this change in PR svanderburg/node2nix#40
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!