nixpkgs/pkgs/development/web/csslint/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

36 lines
1.1 KiB
Nix

{ stdenv, fetchurl, nodejs }:
stdenv.mkDerivation rec {
version = "0.10.0";
name = "csslint-${version}";
src = fetchurl {
url = "http://registry.npmjs.org/csslint/-/${name}.tgz";
sha256 = "1gq2x0pf2p4jhccvn3y3kjhm1lmb4jsfdbzjdh924w8m3sr9jdid";
};
# node is the interpreter used to run this script
buildInputs = [ nodejs ];
installPhase = ''
sed -i "s/path\.join/path\.resolve/g" cli.js # fixes csslint issue #167
mkdir -p $out/bin;
cp -r * $out/bin
mv $out/bin/cli.js $out/bin/csslint
'';
meta = with stdenv.lib; {
description = "Checks CSS for syntax errors and other problems";
longDescription = ''
CSSLint is a tool to help point out problems with your CSS
code. It does basic syntax checking as well as applying a set of
rules to the code that look for problematic patterns or signs of
inefficiency. The rules are all pluggable, so you can easily
write your own or omit ones you don't want. '';
homepage = http://nodejs.org;
license = licenses.bsd2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}