blob: d41b255d3b6a586502645bb0efd0c4f72283547f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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";
};
})
|