just-lsp: init at 0.2.0

This commit is contained in:
Gaetan Lepage
2025-04-19 23:48:49 +02:00
parent d51633e8fb
commit dc87faa0b2
+32
View File
@@ -0,0 +1,32 @@
{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "just-lsp";
version = "0.2.0";
src = fetchFromGitHub {
owner = "terror";
repo = "just-lsp";
tag = finalAttrs.version;
hash = "sha256-c/fdj4lEmID4u97fGPXnPLULS7Rxe6P8icmsfjGjT+w=";
};
cargoHash = "sha256-qPMtYaCvSAnLXrLX20QKbgXo9L1HYxJW4uZIzXhpD/A=";
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Language server for just";
homepage = "https://github.com/terror/just-lsp";
license = lib.licenses.cc0;
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "just-lsp";
};
})