biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / language-servers / neocmakelsp / default.nix
blobb2052d66a35baeec0a8c215e1969fff87197db26
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "neocmakelsp";
8   version = "0.6.22";
10   src = fetchFromGitHub {
11     owner = "Decodetalkers";
12     repo = "neocmakelsp";
13     rev = "v${version}";
14     hash = "sha256-qc0cWEnMH5S4fr9dMQHSWQ2NsCpfWxGvhkYJF7pgnKI=";
15   };
17   cargoHash = "sha256-oPyMHrJTZYavE/M7PrTVv387KShLTg+Kwxg5sRYEkN4=";
19   meta = with lib; {
20     description = "A cmake lsp based on tower-lsp and treesitter";
21     homepage = "https://github.com/Decodetalkers/neocmakelsp";
22     license = licenses.mit;
23     platforms = platforms.linux;
24     maintainers = with maintainers; [ rewine ];
25     mainProgram = "neocmakelsp";
26   };