35 lines
819 B
Nix
35 lines
819 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
}:
|
|
let
|
|
pname = "ts_query_ls";
|
|
version = "1.4.2";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ribru17";
|
|
repo = "ts_query_ls";
|
|
rev = "v${version}";
|
|
hash = "sha256-h5ZxtFz70HXqAh9c+A350TKQTMv+PsV7tPzmJisLQ/I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-/Xd++vGhv6SLpjqqjTEWwAJBAu34mTTOiJ+zdwgBs2k=";
|
|
|
|
meta = {
|
|
description = "LSP implementation for Tree-sitter's query files";
|
|
homepage = "https://github.com/ribru17/ts_query_ls";
|
|
changelog = "https://github.com/ribru17/ts_query_ls/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ribru17 ];
|
|
mainProgram = "ts_query_ls";
|
|
};
|
|
}
|