llm-ls: 0.4.0 -> 0.5.2

This commit is contained in:
Roman Zakirzyanov 2024-04-25 17:11:07 +03:00
parent 2df397b207
commit aedebb76de
1 changed files with 9 additions and 3 deletions

View File

@ -1,11 +1,13 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
}:
let
pname = "llm-ls";
version = "0.4.0";
version = "0.5.2";
in
rustPlatform.buildRustPackage {
inherit pname version;
@ -14,10 +16,14 @@ rustPlatform.buildRustPackage {
owner = "huggingface";
repo = "llm-ls";
rev = version;
sha256 = "sha256-aMoT/rH6o4dHCSiSI/btdKysFfIbHvV7R5dRHIOF/Qs=";
sha256 = "sha256-DyPdx+nNBhOZ86GQljMYULatWny2EteNNzzO6qv1Wlk=";
};
cargoHash = "sha256-Z6BO4kDtlIrVdDk1fiwyelpu1rj7e4cibgFZRsl1pfA=";
cargoHash = "sha256-7McUyQjnCuV0JG65hUoR8TtB4vrjiEO1l7NXYochgG8=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "LSP server leveraging LLMs for code completion (and more?)";