nixpkgs/pkgs/development/node-packages
c74d 253f96435f
nodePackages.csslint: init at 1.0.2
Add the NPM package `csslint`, at version 1.0.2, as `nodePackages.csslint`.

I have tested this package per nixpkgs manual section 10.1 ("Making patches").

Fixes #18616
2016-10-01 10:57:28 +02:00
..
composition-v4.nix nodePackages: regenerate with node2nix-1.1.0. The new node2nix supports postInstall hooks that have been used to fix npm2nix 2016-09-13 20:56:05 +00:00
composition-v5.nix nodePackages: regenerate with node2nix-1.1.0. The new node2nix supports postInstall hooks that have been used to fix npm2nix 2016-09-13 20:56:05 +00:00
default-v0_10.nix nodePackages: use node2nix generated package set 2016-09-01 12:12:12 +00:00
default-v4.nix nodePackages.bower2nix: Add back PATH wrapping 2016-09-15 01:28:36 +01:00
default-v5.nix nodePackages.bower2nix: Add back PATH wrapping 2016-09-15 01:28:36 +01:00
default-v6.nix nodePackages.bower2nix: Add back PATH wrapping 2016-09-15 01:28:36 +01:00
generate.sh nodePackages: use node2nix generated package set 2016-09-01 12:12:12 +00:00
node-env.nix nodePackages: regenerate with node2nix-1.1.0. The new node2nix supports postInstall hooks that have been used to fix npm2nix 2016-09-13 20:56:05 +00:00
node-packages-v4.nix nodePackages.csslint: init at 1.0.2 2016-10-01 10:57:28 +02:00
node-packages-v5.nix nodePackages.csslint: init at 1.0.2 2016-10-01 10:57:28 +02:00
node-packages.json nodePackages.csslint: init at 1.0.2 2016-10-01 10:57:28 +02: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!