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

Configure Feed

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

at main 642 B View raw
1self: super: rec { 2 my-universal-ctags = super.universal-ctags.overrideAttrs (old: rec { 3 version = "6.1.0"; 4 src = super.fetchFromGitHub { 5 owner = "universal-ctags"; 6 repo = "ctags"; 7 rev = "v${version}"; 8 sha256 = "sha256-f8+Ifjn7bhSYozOy7kn+zCLdHGrH3iFupHUZEGynz9Y="; 9 }; 10 # disable checks, else we get `make[1]: *** No rule to make target 'optlib/cmake.c'. Stop.` 11 doCheck = false; 12 checkFlags = [ ]; 13 }); 14 15 # Skip building if same ctags version as registry 16 universal-ctags = if super.universal-ctags.version == my-universal-ctags.version then super.universal-ctags else my-universal-ctags; 17}