Added zsh

svn path=/nixpkgs/trunk/; revision=8900
This commit is contained in:
Michael Raskin 2007-06-20 10:02:10 +00:00
parent 35ae2ce5c3
commit 0432c3cf1c
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, coreutils, ncurses}:
stdenv.mkDerivation {
name = "zsh";
src = fetchurl {
url = ftp://nephtys.lip6.fr/pub/unix/shells/zsh/zsh-4.2.3.tar.bz2;
md5 = "ae19a74ae7e84cf4dbd8e35f52c8ec74";
};
configureFlags = "--with-tcsetpgrp";
buildInputs = [ncurses coreutils ];
}

View file

@ -626,6 +626,10 @@ rec {
inherit fetchurl stdenv ncurses;
};
zsh = import ../shells/zsh {
inherit fetchurl stdenv ncurses coreutils;
};
### DEVELOPMENT / COMPILERS