2023-06-11 15:57:03 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "neocmakelsp";
|
2024-07-22 11:14:31 +00:00
|
|
|
version = "0.7.9";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Decodetalkers";
|
|
|
|
repo = "neocmakelsp";
|
|
|
|
rev = "v${version}";
|
2024-07-22 11:14:31 +00:00
|
|
|
hash = "sha256-vxdXW74XRZONmLURGEHnyg4Z71uvD6/JzxVqkNqyxdo=";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
|
2024-07-22 11:14:31 +00:00
|
|
|
cargoHash = "sha256-otEpfykVTJ0DH9n3kO4G/BO2VD6RGp9N6/UX6UAs2jU=";
|
2023-06-11 15:57:03 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Cmake lsp based on tower-lsp and treesitter";
|
|
|
|
homepage = "https://github.com/Decodetalkers/neocmakelsp";
|
|
|
|
license = licenses.mit;
|
2024-05-21 13:11:09 +00:00
|
|
|
platforms = platforms.linux ++ [ "x86_64-darwin" "aarch64-darwin" ];
|
2023-06-11 15:57:03 +00:00
|
|
|
maintainers = with maintainers; [ rewine ];
|
2023-08-04 17:50:44 +00:00
|
|
|
mainProgram = "neocmakelsp";
|
2023-06-11 15:57:03 +00:00
|
|
|
};
|
|
|
|
}
|