about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorFlorian Friesdorf <flo@chaoflow.net>2011-12-29 19:46:43 +0000
committerFlorian Friesdorf <flo@chaoflow.net>2011-12-29 19:46:43 +0000
commitecba799e780734eaf9087fc7444ae554d7f59e46 (patch)
treec7842f0179d47bfd9de5b76094a4ce6a4637fb78 /pkgs/shells
parentc6ad751a8c94936533041843f3676088460fad45 (diff)
zsh meta
svn path=/nixpkgs/trunk/; revision=31147
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index ae1801c546345..db0e1d107b5da 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -26,5 +26,14 @@ stdenv.mkDerivation {
     tar xf ${documentation} -C $out/share
   '';
 
-  buildInputs = [ncurses coreutils];
+  buildInputs = [ ncurses coreutils ];
+
+  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.";
+    license = "MIT-like";
+    homePage = "http://www.zsh.org/";
+    maintainers = with stdenv.lib.maintainers; [ chaoflow ];
+    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
+  };
 }