mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Added zsh
svn path=/nixpkgs/trunk/; revision=8900
This commit is contained in:
parent
35ae2ce5c3
commit
0432c3cf1c
2 changed files with 17 additions and 0 deletions
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;
|
||||
};
|
||||
|
||||
zsh = import ../shells/zsh {
|
||||
inherit fetchurl stdenv ncurses coreutils;
|
||||
};
|
||||
|
||||
|
||||
### DEVELOPMENT / COMPILERS
|
||||
|
||||
|
|
Loading…
Reference in a new issue