504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
27 lines
675 B
Nix
27 lines
675 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "neocmakelsp";
|
|
version = "0.6.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Decodetalkers";
|
|
repo = "neocmakelsp";
|
|
rev = "v${version}";
|
|
hash = "sha256-0Rc5oPm6BAjPmoRHUO3gVivbQt2p2y62VbT5NIzHtpI=";
|
|
};
|
|
|
|
cargoHash = "sha256-7ifdmW9JBjz0jxpltn5gFa60oNsB4daA6cXCLnBne7o=";
|
|
|
|
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 ];
|
|
mainProgram = "neocmakelsp";
|
|
};
|
|
}
|