summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-10-05 16:22:46 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-10-05 19:36:23 +0200
commit28ac782583d6a959940ece313e3842a97e9340c0 (patch)
tree1b8e31f7610bde6250cb8f118f6d8e880635b09e /pkgs/development/tools/analysis
parent4c7796e4a30178037210e90414103ab43c80f36a (diff)
downloadnixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar.gz
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar.bz2
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar.lz
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar.xz
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.tar.zst
nixlib-28ac782583d6a959940ece313e3842a97e9340c0.zip
Some description fixes
There are many more packages to fix, this is just a start.

Rules:
 * Don't repeat the package name (not always that easy...)
 * Start with capital letter
 * Don't end with full stop
 * Don't start with "The ..." or "A ..."

I've also added descriptions to some packages and rewritten others.
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/checkstyle/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix
index 09656dc520a8..1dfaa5cf875b 100644
--- a/pkgs/development/tools/analysis/checkstyle/default.nix
+++ b/pkgs/development/tools/analysis/checkstyle/default.nix
@@ -15,7 +15,12 @@ stdenv.mkDerivation {
   '';
 
   meta = {
-    description = "A development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Sun Code Conventions, but is highly configurable." ;
+    description = "Checks Java source against a coding standard";
+    longDescription = ''
+      checkstyle is a development tool to help programmers write Java code that
+      adheres to a coding standard. By default it supports the Sun Code
+      Conventions, but is highly configurable.
+    '';
     homepage = http://checkstyle.sourceforge.net/;
   };
 }