just-lsp: init at 0.2.0 (#400185)

authored by Gaétan Lepage and committed by GitHub 477baac2 c2432dfe

+32
+32
pkgs/by-name/ju/just-lsp/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 + pname = "just-lsp"; 10 + version = "0.2.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "terror"; 14 + repo = "just-lsp"; 15 + tag = finalAttrs.version; 16 + hash = "sha256-c/fdj4lEmID4u97fGPXnPLULS7Rxe6P8icmsfjGjT+w="; 17 + }; 18 + 19 + cargoHash = "sha256-qPMtYaCvSAnLXrLX20QKbgXo9L1HYxJW4uZIzXhpD/A="; 20 + 21 + passthru = { 22 + updateScript = nix-update-script { }; 23 + }; 24 + 25 + meta = { 26 + description = "Language server for just"; 27 + homepage = "https://github.com/terror/just-lsp"; 28 + license = lib.licenses.cc0; 29 + maintainers = with lib.maintainers; [ GaetanLepage ]; 30 + mainProgram = "just-lsp"; 31 + }; 32 + })