nixpkgs/pkgs/development/tools/language-servers/neocmakelsp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
712 B
Nix
Raw Normal View History

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;
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
};
}