zsh: improve description
Capitalize first word. Wrap overlong longDescription line.
This commit is contained in:
parent
654f9e38e6
commit
52561fb7a8
|
@ -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 ];
|
||||
|
|
Loading…
Reference in New Issue