2022-01-09 11:56:36 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, yodl
|
|
|
|
, perl
|
|
|
|
, groff
|
|
|
|
, util-linux
|
|
|
|
, texinfo
|
|
|
|
, ncurses
|
|
|
|
, pcre
|
|
|
|
, buildPackages }:
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2021-07-17 21:39:28 +01:00
|
|
|
let
|
2022-05-26 02:18:43 +01:00
|
|
|
version = "5.9";
|
2021-07-17 21:39:28 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "zsh";
|
|
|
|
inherit version;
|
2022-05-16 23:59:32 +01:00
|
|
|
outputs = [ "out" "doc" "info" "man" ];
|
2021-07-17 21:39:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/zsh/zsh-${version}.tar.xz";
|
2022-05-26 02:18:43 +01:00
|
|
|
sha256 = "sha256-m40ezt1bXoH78ZGOh2dSp92UjgXBoNuhCrhjhC1FrNU=";
|
2021-07-17 21:39:28 +01:00
|
|
|
};
|
2021-07-14 16:10:11 +01:00
|
|
|
|
2021-09-03 13:00:00 +01:00
|
|
|
patches = [
|
|
|
|
# fix location of timezone data for TZ= completion
|
|
|
|
./tz_completion.patch
|
|
|
|
];
|
|
|
|
|
2022-05-06 19:39:28 +01:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook perl groff texinfo pcre]
|
2022-01-11 19:00:32 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ util-linux yodl ];
|
2022-01-09 11:56:36 +00: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"
|
2020-11-29 00:04:06 +00:00
|
|
|
"--disable-site-fndir"
|
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
|
2021-01-15 06:28:56 +00:00
|
|
|
checkFlags = map (T: "TESTNUM=${T}") (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
|
2022-05-16 23:59:32 +01:00
|
|
|
postInstall = ''
|
2022-01-09 11:56:36 +00:00
|
|
|
make install.info install.html
|
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
|
2019-08-02 09:24:29 +01:00
|
|
|
${if stdenv.hostPlatform == stdenv.buildPlatform then ''
|
|
|
|
$out/bin/zsh -c "zcompile $out/etc/zprofile"
|
|
|
|
'' else ''
|
2021-01-15 06:28:56 +00:00
|
|
|
${lib.getBin buildPackages.zsh}/bin/zsh -c "zcompile $out/etc/zprofile"
|
2019-08-02 09:24:29 +01:00
|
|
|
''}
|
2011-12-29 19:46:47 +00:00
|
|
|
mv $out/etc/zprofile $out/etc/zprofile_zwc_is_used
|
2022-05-31 17:55:19 +01:00
|
|
|
|
|
|
|
rm $out/bin/zsh-${version}
|
2022-05-16 23:59:32 +01:00
|
|
|
mkdir -p $out/share/doc/
|
|
|
|
mv $out/share/zsh/htmldoc $out/share/doc/zsh-$version
|
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";
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://www.zsh.org/";
|
2022-05-26 02:18:43 +01:00
|
|
|
maintainers = with lib.maintainers; [ pSub artturin ];
|
2021-01-15 06:28:56 +00:00
|
|
|
platforms = 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
|
|
|
}
|