3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #237210 from wineee/neocmakelsp

neocmakelsp: init at 0.5.18
This commit is contained in:
figsoda 2023-06-11 13:12:30 -04:00 committed by GitHub
commit 2b7e971280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "neocmakelsp";
version = "0.5.18";
src = fetchFromGitHub {
owner = "Decodetalkers";
repo = "neocmakelsp";
rev = "v${version}";
hash = "sha256-3Bv1tRskxQ4Fk+gEGCYRq8WtkBHYP2VjirtTZ3SWJlQ=";
};
cargoHash = "sha256-O8E5PmXYrNOB8fXFs5ar30c1X5flIQZ/lrRSl/3XH+o=";
meta = with lib; {
description = "A cmake lsp based on tower-lsp and treesitter";
homepage = "https://github.com/Decodetalkers/neocmakelsp";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ rewine ];
};
}

View file

@ -17757,6 +17757,8 @@ with pkgs;
millet = callPackage ../development/tools/language-servers/millet { };
neocmakelsp = callPackage ../development/tools/language-servers/neocmakelsp { };
nil = callPackage ../development/tools/language-servers/nil { };
nls = callPackage ../development/tools/language-servers/nls { };