2023-06-11 15:57:03 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "neocmakelsp";
|
2024-07-13 09:05:55 +00:00
|
|
|
version = "0.7.8";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Decodetalkers";
|
|
|
|
repo = "neocmakelsp";
|
|
|
|
rev = "v${version}";
|
2024-07-13 09:05:55 +00:00
|
|
|
hash = "sha256-qLYMkUfWpMfUFd0E5oOpYLjSFi8f0YxdRIh2FD1mD7I=";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
|
2024-07-13 09:05:55 +00:00
|
|
|
cargoHash = "sha256-NpOtDAB+CQ8iPjta0D/HIFNY6oRjKmr4C0xwEw6HHTE=";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +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;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ rewine ];
|
2023-08-04 17:50:44 +00:00
|
|
|
mainProgram = "neocmakelsp";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
}
|