universal-ctags: add binary symlink for universal-ctags

Some tools like Zoekt expect `ctags`-esque tools to have unique binary names in
order to find them (turns out, there are a lot of "ctags" projects out there.)
Add an alias in order to help it out.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2024-09-08 18:52:50 -05:00
parent 55fb76dc7e
commit 989619524b

View File

@ -60,6 +60,11 @@ stdenv.mkDerivation (finalAttrs: {
patchShebangs misc/*
'';
# some tools like 'zoekt' want an unambiguous binary name, so give it to them
postInstall = ''
ln -s $out/bin/ctags $out/bin/universal-ctags
'';
doCheck = true;
checkFlags = [