Skip to content

Commit 7cc2872

Browse files
committed
nix: use tag for rev in ctags derivation
1 parent 328fcb7 commit 7cc2872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
in { default = import ./shell.nix { inherit pkgs; }; });
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 {
21-
my-universal-ctags = super.universal-ctags.overrideAttrs (old: {
21+
my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec {
2222
version = "6.0.0";
2323
src = super.fetchFromGitHub {
2424
owner = "universal-ctags";
2525
repo = "ctags";
26-
rev = "3af413544a0ed0a4c52200894cfd6391f06d2e94";
26+
rev = "v${version}";
2727
sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w=";
2828
};
2929
# disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`

0 commit comments

Comments
 (0)