Added zsh
svn path=/nixpkgs/trunk/; revision=8900
This commit is contained in:
parent
35ae2ce5c3
commit
0432c3cf1c
13
pkgs/shells/zsh/default.nix
Normal file
13
pkgs/shells/zsh/default.nix
Normal 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 ];
|
||||||
|
}
|
@ -626,6 +626,10 @@ rec {
|
|||||||
inherit fetchurl stdenv ncurses;
|
inherit fetchurl stdenv ncurses;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zsh = import ../shells/zsh {
|
||||||
|
inherit fetchurl stdenv ncurses coreutils;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
### DEVELOPMENT / COMPILERS
|
### DEVELOPMENT / COMPILERS
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user