summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-23 13:07:28 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-23 13:07:28 +0200
commit52561fb7a815dc5ca77b672c2324b780dcbeb4bd (patch)
treed716e93b183b9c2e9c6d1b5bf27960510276c490 /pkgs
parent654f9e38e698f51a18b0940e62db6cb679ddc85c (diff)
downloadnixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar.gz
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar.bz2
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar.lz
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar.xz
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.tar.zst
nixlib-52561fb7a815dc5ca77b672c2324b780dcbeb4bd.zip
zsh: improve description
Capitalize first word. Wrap overlong longDescription line.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/shells/zsh/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index 37ffb09288e0..704527d28c7b 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -58,8 +58,15 @@ EOF
   # XXX: patch zsh to take zwc if newer _or equal_
 
   meta = {
-    description = "the Z shell";
-    longDescription = "Zsh is a UNIX command interpreter (shell) usable as an interactive login shell and as a shell script command processor.  Of the standard shells, zsh most closely resembles ksh but includes many enhancements.  Zsh has command line editing, builtin spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and a host of other features.";
+    description = "The Z shell";
+    longDescription = ''
+      Zsh is a UNIX command interpreter (shell) usable as an interactive login
+      shell and as a shell script command processor.  Of the standard shells,
+      zsh most closely resembles ksh but includes many enhancements.  Zsh has
+      command line editing, builtin spelling correction, programmable command
+      completion, shell functions (with autoloading), a history mechanism, and
+      a host of other features.
+    '';
     license = "MIT-like";
     homePage = "http://www.zsh.org/";
     maintainers = with stdenv.lib.maintainers; [ chaoflow ];