Commit 98961952 authored by Austin Seipp's avatar Austin Seipp
Browse files

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: default avatarAustin Seipp <aseipp@pobox.com>
parent 55fb76dc
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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 = [