nixpkgs/pkgs/development/node-packages
Rodney Lorrimar 453529bd60
nodePackages: support github:owner/repo scheme for package deps
JS devs found a new way to be annoying - adjust code accordingly.

Have also put this change in PR svanderburg/node2nix#40
2017-03-12 16:00:13 +01:00
..
composition-v4.nix nodePackages: upgrade node2nix to version 1.1.1 and regenerate the package set 2017-01-20 22:05:44 +01:00
composition-v6.nix nodePackages: upgrade node2nix to version 1.1.1 and regenerate the package set 2017-01-20 22:05:44 +01:00
default-v4.nix nodePackages.bower2nix: Add back PATH wrapping 2016-09-15 01:28:36 +01:00
default-v6.nix nodePackages: Add ios-deploy, update the rest 2017-01-31 20:10:18 -05:00
generate.sh node-packages: add packages for v6 2016-10-30 09:54:55 +01:00
node-env.nix nodePackages: support github:owner/repo scheme for package deps 2017-03-12 16:00:13 +01:00
node-packages-v4.nix nodePackages.yo: init at 1.8.5 2017-02-27 19:36:30 +01:00
node-packages-v6.nix nodePackages.yo: init at 1.8.5 2017-02-27 19:36:30 +01:00
node-packages.json nodePackages.yo: init at 1.8.5 2017-02-27 19:36:30 +01:00
README.md manual: add node to languages & frameworks 2016-09-20 20:38:24 +00: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!