2018-09-06 00:04:40 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, pcre, fetchpatch }:
|
2009-11-18 09:39:59 +00:00
|
|
|
|
|
|
|
let
|
2019-01-24 20:37:54 +00:00
|
|
|
version = "5.7";
|
2009-11-18 09:39:59 +00:00
|
|
|
|
|
|
|
documentation = fetchurl {
|
2018-09-10 21:45:36 +01:00
|
|
|
url = "mirror://sourceforge/zsh/zsh-${version}-doc.tar.xz";
|
2019-01-24 20:37:54 +00:00
|
|
|
sha256 = "0pgisyi82pg5mycx1k7vfx9hwzl6zq00r5s9v91lg4gqisvlvagh";
|
2008-11-22 16:57:16 +00:00
|
|
|
};
|
2014-04-09 11:16:43 +01:00
|
|
|
|
2008-11-22 16:57:16 +00:00
|
|
|
in
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2008-11-22 16:57:16 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "zsh-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-09-10 21:45:36 +01:00
|
|
|
url = "mirror://sourceforge/zsh/zsh-${version}.tar.xz";
|
2019-01-24 20:37:54 +00:00
|
|
|
sha256 = "04ynid3ggvy6i5c26bk52mq6x5vyrdwgryid9hggmnb1nf8b41vq";
|
2008-11-22 16:57:16 +00:00
|
|
|
};
|
2014-04-09 11:16:43 +01:00
|
|
|
|
2016-03-09 13:13:31 +00:00
|
|
|
buildInputs = [ ncurses pcre ];
|
2011-12-29 19:46:47 +00:00
|
|
|
|
2018-02-07 01:56:54 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-maildir-support"
|
|
|
|
"--enable-multibyte"
|
|
|
|
"--with-tcsetpgrp"
|
|
|
|
"--enable-pcre"
|
2019-01-08 10:11:37 +00:00
|
|
|
"--enable-zprofile=${placeholder "out"}/etc/zprofile"
|
2018-02-07 01:56:54 +00:00
|
|
|
];
|
2015-11-19 15:52:08 +00:00
|
|
|
|
|
|
|
# the zsh/zpty module is not available on hydra
|
|
|
|
# so skip groups Y Z
|
2018-02-07 01:56:54 +00:00
|
|
|
checkFlags = map (T: "TESTNUM=${T}") (stdenv.lib.stringToCharacters "ABCDEVW");
|
2008-11-22 16:57:16 +00:00
|
|
|
|
2011-12-29 19:46:47 +00:00
|
|
|
# XXX: think/discuss about this, also with respect to nixos vs nix-on-X
|
2008-11-22 16:57:16 +00:00
|
|
|
postInstall = ''
|
2016-03-09 13:13:31 +00:00
|
|
|
mkdir -p $out/share/info
|
2008-11-22 16:57:16 +00:00
|
|
|
tar xf ${documentation} -C $out/share
|
2016-03-09 13:13:31 +00:00
|
|
|
ln -s $out/share/zsh-*/Doc/zsh.info* $out/share/info/
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/etc/
|
2011-12-29 19:46:47 +00:00
|
|
|
cat > $out/etc/zprofile <<EOF
|
2011-12-29 20:09:30 +00:00
|
|
|
if test -e /etc/NIXOS; then
|
|
|
|
if test -r /etc/zprofile; then
|
|
|
|
. /etc/zprofile
|
|
|
|
else
|
|
|
|
emulate bash
|
|
|
|
alias shopt=false
|
|
|
|
. /etc/profile
|
|
|
|
unalias shopt
|
|
|
|
emulate zsh
|
|
|
|
fi
|
|
|
|
if test -r /etc/zprofile.local; then
|
|
|
|
. /etc/zprofile.local
|
|
|
|
fi
|
2011-12-29 19:46:47 +00:00
|
|
|
else
|
2011-12-29 20:09:30 +00:00
|
|
|
# on non-nixos we just source the global /etc/zprofile as if we did
|
|
|
|
# not use the configure flag
|
|
|
|
if test -r /etc/zprofile; then
|
|
|
|
. /etc/zprofile
|
|
|
|
fi
|
2011-12-29 19:46:47 +00:00
|
|
|
fi
|
|
|
|
EOF
|
|
|
|
$out/bin/zsh -c "zcompile $out/etc/zprofile"
|
|
|
|
mv $out/etc/zprofile $out/etc/zprofile_zwc_is_used
|
2008-11-22 16:57:16 +00:00
|
|
|
'';
|
2011-12-29 19:46:47 +00:00
|
|
|
# XXX: patch zsh to take zwc if newer _or equal_
|
2011-12-29 19:46:43 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-06-23 12:07:28 +01:00
|
|
|
description = "The Z shell";
|
|
|
|
longDescription = ''
|
|
|
|
Zsh is a UNIX command interpreter (shell) usable as an interactive login
|
|
|
|
shell and as a shell script command processor. Of the standard shells,
|
|
|
|
zsh most closely resembles ksh but includes many enhancements. Zsh has
|
|
|
|
command line editing, builtin spelling correction, programmable command
|
|
|
|
completion, shell functions (with autoloading), a history mechanism, and
|
|
|
|
a host of other features.
|
|
|
|
'';
|
2011-12-29 19:46:43 +00:00
|
|
|
license = "MIT-like";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.zsh.org/;
|
2015-06-08 11:54:29 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ chaoflow pSub ];
|
2014-07-17 23:38:19 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-12-29 19:46:43 +00:00
|
|
|
};
|
2016-05-14 14:03:47 +01:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/zsh";
|
|
|
|
};
|
2008-11-22 16:57:16 +00:00
|
|
|
}
|