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

View File

@ -1,11 +1,13 @@
{ lib { lib
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, pkg-config
, openssl
}: }:
let let
pname = "llm-ls"; pname = "llm-ls";
version = "0.4.0"; version = "0.5.2";
in in
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
inherit pname version; inherit pname version;
@ -14,10 +16,14 @@ rustPlatform.buildRustPackage {
owner = "huggingface"; owner = "huggingface";
repo = "llm-ls"; repo = "llm-ls";
rev = version; 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; { meta = with lib; {
description = "LSP server leveraging LLMs for code completion (and more?)"; description = "LSP server leveraging LLMs for code completion (and more?)";