Merge pull request #319393 from infinisil/zsh-abbr-man

zsh-abbr: Install man page
This commit is contained in:
Silvan Mosberger 2024-06-13 18:52:59 +02:00 committed by GitHub
commit f467b066db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,9 @@ stdenv.mkDerivation rec {
installPhase = ''
install -D zsh-abbr.zsh $out/share/zsh/${pname}/abbr.plugin.zsh
# Needed so that `man` can find the manpage, since it looks via PATH
mkdir -p $out/bin
mv man $out/share/man
'';
meta = with lib; {