zimbatm f9a9ea920a Revert "nodePackages.yarn: remove package"
This reverts commit 986dba716f8244304e5e9afb92924eb543fc5596.

Fixes:

    error: anonymous function at /home/travis/build/NixOS/nixpkgs/pkgs/development/node-packages/node-env.nix:3:1 called with unexpected argument ‘python’, at /home/travis/build/NixOS/nixpkgs/pkgs/development/node-packages/composition-v6.nix:8:13

This commit is doing a lot more than removing the yarn package, it also
upgrades a ton of other packages.
2017-01-15 18:34:00 +00:00
..
2016-10-30 09:54:55 +01:00
2017-01-04 02:52:38 +03:00

Node.js packages

To add a package from NPM to nixpkgs:

  1. Install node2nix: nix-env -f '<nixpkgs>' -iA node2nix.
  2. Modify pkgs/development/node-packages/node-packages.json, to add, update, or remove package entries.
  3. Run the script: cd pkgs/development/node-packages && sh generate.sh.
  4. 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>
  5. Add, commit, and share your changes!