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

Configure Feed

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

nix: use go 1.21 and universal-ctags 6.0.0 (#664)

+10 -8
+3 -3
flake.lock
··· 2 2 "nodes": { 3 3 "nixpkgs": { 4 4 "locked": { 5 - "lastModified": 1682879489, 6 - "narHash": "sha256-sASwo8gBt7JDnOOstnps90K1wxmVfyhsTPPNTGBPjjg=", 5 + "lastModified": 1697456312, 6 + "narHash": "sha256-roiSnrqb5r+ehnKCauPLugoU8S36KgmWraHgRqVYndo=", 7 7 "owner": "NixOS", 8 8 "repo": "nixpkgs", 9 - "rev": "da45bf6ec7bbcc5d1e14d3795c025199f28e0de0", 9 + "rev": "ca012a02bf8327be9e488546faecae5e05d7d749", 10 10 "type": "github" 11 11 }, 12 12 "original": {
+6 -4
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 - universal-ctags = super.universal-ctags.overrideAttrs (old: { 22 - version = "5.9.20220403.0"; 21 + my-universal-ctags = super.universal-ctags.overrideAttrs (old: { 22 + version = "6.0.0"; 23 23 src = super.fetchFromGitHub { 24 24 owner = "universal-ctags"; 25 25 repo = "ctags"; 26 - rev = "f95bb3497f53748c2b6afc7f298cff218103ab90"; 27 - sha256 = "sha256-pd89KERQj6K11Nue3YFNO+NLOJGqcMnHkeqtWvMFk38="; 26 + rev = "3af413544a0ed0a4c52200894cfd6391f06d2e94"; 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.` 30 30 doCheck = false; 31 31 checkFlags = [ ]; 32 32 }); 33 + # The ctags in the registry currently is 6.0.0 so we can skip building in that case 34 + universal-ctags = if super.universal-ctags.version == my-universal-ctags.version then super.universal-ctags else my-universal-ctags; 33 35 }; 34 36 }; 35 37 }
+1 -1
shell.nix
··· 11 11 name = "zoekt"; 12 12 13 13 nativeBuildInputs = [ 14 - pkgs.go_1_20 14 + pkgs.go_1_21 15 15 16 16 # zoekt-git-index 17 17 pkgs.git