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.
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!