···1919 # Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh.
2020 overlays.ctags = self: super: rec {
2121 my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec {
2222- version = "6.0.0";
2222+ version = "6.1.0";
2323 src = super.fetchFromGitHub {
2424 owner = "universal-ctags";
2525 repo = "ctags";
2626 rev = "v${version}";
2727- sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w=";
2727+ sha256 = "sha256-f8+Ifjn7bhSYozOy7kn+zCLdHGrH3iFupHUZEGynz9Y=";
2828 };
2929 # disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`
3030 doCheck = false;
3131 checkFlags = [ ];
3232 });
3333- # The ctags in the registry currently is 6.0.0 so we can skip building in that case
3333+ # Skip building if same ctags version as registry
3434 universal-ctags = if super.universal-ctags.version == my-universal-ctags.version then super.universal-ctags else my-universal-ctags;
3535 };
3636 };
+3-3
install-ctags-alpine.sh
···33# This script installs universal-ctags within an alpine container.
4455# Commit hash of github.com/universal-ctags/ctags.
66-# Last bumped 2023-10-24.
77-CTAGS_VERSION=v6.0.0
88-CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.0.0
66+# Last bumped 2024-09-02.
77+CTAGS_VERSION=v6.1.0
88+CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-6.1.0
99# When using commits you can rely on
1010# CTAGS_ARCHIVE_TOP_LEVEL_DIR=ctags-$CTAGS_VERSION
1111