summary refs log tree commit diff
path: root/pkgs/development/web/csslint/default.nix
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-08-21 21:34:17 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-08-21 21:34:17 +0000
commit694dbfe84512ff20569c1c3e2dc512cf809a44b4 (patch)
treeb5ef442e1bf6f3a333fe6d395778e2c19cb8c16e /pkgs/development/web/csslint/default.nix
parentd34ffe6f3b66c0d8f4d7fdd3a54f3fff851cec36 (diff)
downloadnixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar.gz
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar.bz2
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar.lz
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar.xz
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.tar.zst
nixpkgs-694dbfe84512ff20569c1c3e2dc512cf809a44b4.zip
Adding csslint, this uses node as an interpreter. It detects problems in CSS files.
svn path=/nixpkgs/trunk/; revision=28731
Diffstat (limited to 'pkgs/development/web/csslint/default.nix')
-rw-r--r--pkgs/development/web/csslint/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/web/csslint/default.nix b/pkgs/development/web/csslint/default.nix
new file mode 100644
index 00000000000..6f09603b2d5
--- /dev/null
+++ b/pkgs/development/web/csslint/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, nodejs }:
+
+stdenv.mkDerivation rec {
+  version = "0.5.0";
+  name = "csslint-${version}";
+
+  src = fetchurl {
+    url = "http://registry.npmjs.org/csslint/-/${name}.tgz";
+    sha256 = "ee7a79c8f2af1c228d4b7869b6681d0d02a93568774dbf51c7a45aa1ffa1da14";
+  };
+
+  # 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
+    ensureDir $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;
+  };
+}