Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromSourcehut, 4 nix-update-script, 5 vimUtils, 6}: 7vimUtils.buildVimPlugin { 8 pname = "clangd_extensions.nvim"; 9 version = "0-unstable-2025-01-27"; 10 11 src = fetchFromSourcehut { 12 owner = "~p00f"; 13 repo = "clangd_extensions.nvim"; 14 rev = "db28f29be928d18cbfb86fbfb9f83f584f658feb"; 15 hash = "sha256-XdA638W0Zb85v5uAUNpvUiiQXGKOM2xykD2ClLk8Qpo="; 16 }; 17 18 passthru.updateScript = nix-update-script { }; 19 20 meta = { 21 description = "Clangd's off-spec features for neovim's LSP client"; 22 homepage = "https://git.sr.ht/~p00f/clangd_extensions.nvim"; 23 license = lib.licenses.mit; 24 platforms = lib.platforms.all; 25 }; 26}