summary refs log tree commit diff
path: root/pkgs/shells/zsh/cvs.nix
blob: db34f0666d50b7b91dfbe0465cbfcd569461bcf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args: with args;
# cvs does include docs
# the cvs snapshot is updated occasionally. see bleedingEdgeRepos

stdenv.mkDerivation {
  name = "zsh-${version}";

  src = sourceByName "zsh";
  configureFlags = "--with-tcsetpgrp --enable-maildir-support --enable-multibyte";

  preConfigure = "autoconf; autoheader";

  postInstall = ''
    ensureDir $out/share/
    cp -R Doc $out/share
  '';

  buildInputs = [ncurses coreutils autoconf yodl ];
}