summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-08-25 10:00:01 +0200
committerDomen Kožar <domen@dev.si>2014-08-25 10:00:01 +0200
commited463b37edcd9674bf88a11cc6c257fe442b1698 (patch)
tree7a5efc7c079d743929a3ecb28e58f7a06a8b8415 /pkgs/tools/X11
parent2053c7d8bea4a5acce6699ff56508889c10174df (diff)
parentc9baba9212feb6e39151118647d45b34b029a6df (diff)
downloadnixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar.gz
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar.bz2
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar.lz
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar.xz
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.tar.zst
nixlib-ed463b37edcd9674bf88a11cc6c257fe442b1698.zip
Merge pull request #3771 from bjornfor/fix-package-descriptions
Fix many package descriptions
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/hsetroot/default.nix2
-rw-r--r--pkgs/tools/X11/wmctrl/default.nix2
-rw-r--r--pkgs/tools/X11/xnee/default.nix2
-rw-r--r--pkgs/tools/X11/xtrace/default.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/X11/hsetroot/default.nix b/pkgs/tools/X11/hsetroot/default.nix
index d91f4bfdf652..e226f1f93c43 100644
--- a/pkgs/tools/X11/hsetroot/default.nix
+++ b/pkgs/tools/X11/hsetroot/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
   buildInputs = [ imlib2 libX11 libXext ];
 
   meta = {
-    description = "hsetroot allows you to compose wallpapers ('root pixmaps') for X";
+    description = "Allows you to compose wallpapers ('root pixmaps') for X";
     homepage = http://thegraveyard.org/hsetroot.html;
     license = stdenv.lib.licenses.gpl2Plus;
   };
diff --git a/pkgs/tools/X11/wmctrl/default.nix b/pkgs/tools/X11/wmctrl/default.nix
index 3f691b8ecd45..2e23e7bd4de4 100644
--- a/pkgs/tools/X11/wmctrl/default.nix
+++ b/pkgs/tools/X11/wmctrl/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     homepage = http://tomas.styblo.name/wmctrl/;
-    description = "wmctrl is a UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager";
+    description = "Command line tool to interact with an EWMH/NetWM compatible X Window Manager";
     license = stdenv.lib.licenses.gpl2;
     platforms = with stdenv.lib.platforms; all;
   };
diff --git a/pkgs/tools/X11/xnee/default.nix b/pkgs/tools/X11/xnee/default.nix
index 0e92021b62c9..35c4ca06c6c5 100644
--- a/pkgs/tools/X11/xnee/default.nix
+++ b/pkgs/tools/X11/xnee/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   meta = {
-    description = "GNU Xnee, an X11 event recording and replay tool";
+    description = "X11 event recording and replay tool";
 
     longDescription =
       '' Xnee is a suite of programs that can record, replay and distribute
diff --git a/pkgs/tools/X11/xtrace/default.nix b/pkgs/tools/X11/xtrace/default.nix
index efc0647f5dbd..c3c9c70fe927 100644
--- a/pkgs/tools/X11/xtrace/default.nix
+++ b/pkgs/tools/X11/xtrace/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
 
   meta = {
     homepage = http://xtrace.alioth.debian.org/;
-    description = "xtrace, a tool to trace X11 protocol connections";
+    description = "Tool to trace X11 protocol connections";
     license = stdenv.lib.licenses.gpl2;
     maintainers = with stdenv.lib.maintainers; [viric];
     platforms = with stdenv.lib.platforms; linux;