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