about summary refs log tree commit diff
path: root/pkgs/shells/zsh/default.nix
blob: fc655445a39ae7a15ad30390e1b0a5dd60f9b2df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, coreutils, ncurses}:
stdenv.mkDerivation {
  name = "zsh-4.2.3";

  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 ];
}