We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328fcb7 commit 7cc2872Copy full SHA for 7cc2872
flake.nix
@@ -18,12 +18,12 @@
18
in { default = import ./shell.nix { inherit pkgs; }; });
19
# Pin a specific version of universal-ctags to the same version as in cmd/symbols/ctags-install-alpine.sh.
20
overlays.ctags = self: super: rec {
21
- my-universal-ctags = super.universal-ctags.overrideAttrs (old: {
+ my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec {
22
version = "6.0.0";
23
src = super.fetchFromGitHub {
24
owner = "universal-ctags";
25
repo = "ctags";
26
- rev = "3af413544a0ed0a4c52200894cfd6391f06d2e94";
+ rev = "v${version}";
27
sha256 = "sha256-XlqBndo8g011SDGp3zM7S+AQ0aCp6rpQlqJF6e5Dd6w=";
28
};
29
# disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.`
0 commit comments