zsh: improve description

Capitalize first word. Wrap overlong longDescription line.
This commit is contained in:
Bjørn Forsman 2014-06-23 13:07:28 +02:00
parent 654f9e38e6
commit 52561fb7a8
1 changed files with 9 additions and 2 deletions

View File

@ -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 ];