2011-08-21 22:34:17 +01:00
|
|
|
{ stdenv, fetchurl, nodejs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 13:07:04 +00:00
|
|
|
version = "0.10.0";
|
2011-08-21 22:34:17 +01:00
|
|
|
name = "csslint-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://registry.npmjs.org/csslint/-/${name}.tgz";
|
2013-12-18 13:07:04 +00:00
|
|
|
sha256 = "1gq2x0pf2p4jhccvn3y3kjhm1lmb4jsfdbzjdh924w8m3sr9jdid";
|
2011-08-21 22:34:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin;
|
2011-08-21 22:34:17 +01:00
|
|
|
cp -r * $out/bin
|
|
|
|
mv $out/bin/cli.js $out/bin/csslint
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Checks CSS for syntax errors and other problems";
|
2011-08-21 22:34:17 +01:00
|
|
|
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. '';
|
2017-08-22 19:50:04 +01:00
|
|
|
homepage = https://nodejs.org;
|
2011-08-21 22:34:17 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|