summary refs log tree commit diff
path: root/pkgs/shells/zsh/4.3.4.nix
blob: ea9a82cf683952acc9fe0d0c5275759ea17500e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
args: with args;
stdenv.mkDerivation {
  name = "zsh-4.3.4";

  src = fetchurl {
    url = mirror://sourceforge/zsh/zsh-4.3.4.tar.bz2;
    sha256 = "1inypy60h7hir8hwidid85pbajrb5w09fl222p0h4fnsn0nf583g";
  };

  configureFlags = "--with-tcsetpgrp --enable-maildir-support --enable-multibyte";

  buildInputs = [ncurses coreutils];
}