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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
local server = require "nvim-lsp-installer.server"
local process = require "nvim-lsp-installer.process"
local platform = require "nvim-lsp-installer.platform"
local std = require "nvim-lsp-installer.installers.std"
local context = require "nvim-lsp-installer.installers.context"
local Data = require "nvim-lsp-installer.data"
local coalesce, when = Data.coalesce, Data.when
local libc = platform.get_libc()
local target = coalesce(
when(
platform.is_mac,
coalesce(
when(platform.arch == "arm64", "rust-analyzer-aarch64-apple-darwin.gz"),
when(platform.arch == "x64", "rust-analyzer-x86_64-apple-darwin.gz")
)
),
when(
platform.is_linux,
coalesce(
when(
libc == "glibc",
coalesce(
when(platform.arch == "arm64", "rust-analyzer-aarch64-unknown-linux-gnu.gz"),
when(platform.arch == "x64", "rust-analyzer-x86_64-unknown-linux-gnu.gz")
)
),
when(libc == "musl", coalesce(when(platform.arch == "x64", "rust-analyzer-x86_64-unknown-linux-musl.gz")))
)
),
when(
platform.is_win,
coalesce(
when(platform.arch == "arm64", "rust-analyzer-aarch64-pc-windows-msvc.gz"),
when(platform.arch == "x64", "rust-analyzer-x86_64-pc-windows-msvc.gz")
)
)
)
return function(name, root_dir)
return server.Server:new {
name = name,
root_dir = root_dir,
homepage = "https://rust-analyzer.github.io",
languages = { "rust" },
installer = {
context.use_github_release_file("rust-lang/rust-analyzer", target),
context.capture(function(ctx)
return std.gunzip_remote(
ctx.github_release_file,
platform.is_win and "rust-analyzer.exe" or "rust-analyzer"
)
end),
std.chmod("+x", { "rust-analyzer" }),
context.receipt(function(receipt, ctx)
receipt:with_primary_source(receipt.github_release_file(ctx))
end),
},
default_options = {
cmd_env = {
PATH = process.extend_path { root_dir },
},
},
}
end
|