2023-06-11 15:57:03 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "neocmakelsp";
|
2024-10-24 12:56:23 +00:00
|
|
|
version = "0.8.12";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Decodetalkers";
|
|
|
|
repo = "neocmakelsp";
|
|
|
|
rev = "v${version}";
|
2024-10-24 12:56:23 +00:00
|
|
|
hash = "sha256-5j1nNPdTZFPmda+2ZNYh9uM1qNCsK6gqUOXZwKJ6ckU=";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
|
2024-10-24 12:56:23 +00:00
|
|
|
cargoHash = "sha256-5ZI4heLlhPaNsNJlD9dYlvzTjoWNdHJGGmU6ugUZqds=";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-05-21 14:24:30 +00:00
|
|
|
description = "CMake lsp based on tower-lsp and treesitter";
|
2023-06-11 15:57:03 +00:00
|
|
|
homepage = "https://github.com/Decodetalkers/neocmakelsp";
|
|
|
|
license = licenses.mit;
|
2024-05-21 14:24:30 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ rewine multivac61 ];
|
2023-08-04 17:50:44 +00:00
|
|
|
mainProgram = "neocmakelsp";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
}
|