fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

nix: use tag for rev in ctags derivation

+2 -2
+2 -2
flake.nix
··· 18 18 in { default = import ./shell.nix { inherit pkgs; }; }); 19 19 # Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh. 20 20 overlays.ctags = self: super: rec { 21 - my-universal-ctags = super.universal-ctags.overrideAttrs (old: { 21 + my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec { 22 22 version = "6.0.0"; 23 23 src = super.fetchFromGitHub { 24 24 owner = "universal-ctags"; 25 25 repo = "ctags"; 26 - rev = "3af413544a0ed0a4c52200894cfd6391f06d2e94"; 26 + rev = "v${version}"; 27 27 sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w="; 28 28 }; 29 29 # disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`