nixpkgs/pkgs/by-name/ne/neocmakelsp/package.nix

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

28 lines
683 B
Nix
Raw Normal View History

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; {
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.unix;
maintainers = with maintainers; [ rewine multivac61 ];
2023-08-04 17:50:44 +00:00
mainProgram = "neocmakelsp";
2023-06-11 15:57:03 +00:00
};
}