adding cvs zsh version because it has better hg, tg completion support
svn path=/nixpkgs/trunk/; revision=13670
This commit is contained in:
19
pkgs/shells/zsh/cvs.nix
Normal file
19
pkgs/shells/zsh/cvs.nix
Normal file
@@ -0,0 +1,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 ];
|
||||
}
|
||||
Reference in New Issue
Block a user