-
-
Notifications
You must be signed in to change notification settings - Fork 400
/
Copy pathpackage.yaml
90 lines (84 loc) · 2.21 KB
/
package.yaml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
name: zls
description: Zig LSP implementation + Zig Language Server.
homepage: https://github.com/zigtools/zls
licenses:
- MIT
languages:
- Zig
categories:
- LSP
source:
id: pkg:github/zigtools/[email protected]
asset:
- target: darwin_arm64
file: zls-aarch64-macos.tar.xz
bin: zls
- target: darwin_x64
file: zls-x86_64-macos.tar.xz
bin: zls
- target: linux_arm64
file: zls-aarch64-linux.tar.xz
bin: zls
- target: linux_x64
file: zls-x86_64-linux.tar.xz
bin: zls
- target: linux_x86
file: zls-x86-linux.tar.xz
bin: zls
- target: win_x86
file: zls-x86-windows.zip
bin: zls.exe
- target: win_x64
file: zls-x86_64-windows.zip
bin: zls.exe
version_overrides:
- constraint: semver:<=0.11.0
id: pkg:github/zigtools/[email protected]
asset:
- target: darwin_arm64
file: zls-aarch64-macos.tar.gz
bin: bin/zls
- target: darwin_x64
file: zls-x86_64-macos.tar.gz
bin: bin/zls
- target: linux_arm64
file: zls-aarch64-linux.tar.gz
bin: bin/zls
- target: linux_x64
file: zls-x86_64-linux.tar.gz
bin: bin/zls
- target: linux_x86
file: zls-x86-linux.tar.gz
bin: bin/zls
- target: win_x86
file: zls-x86-windows.zip
bin: bin/zls.exe
- target: win_x64
file: zls-x86_64-windows.zip
bin: bin/zls.exe
- constraint: semver:<=0.10.0
id: pkg:github/zigtools/[email protected]
asset:
- target: darwin_arm64
file: aarch64-macos.tar.zst
bin: bin/zls
- target: darwin_x64
file: x86_64-macos.tar.zst
bin: bin/zls
- target: linux_x64
file: x86_64-linux.tar.zst
bin: bin/zls
- target: linux_x86
file: i386-linux.tar.zst
bin: bin/zls
- target: win_x86
file: i386-windows.tar.zst
bin: bin/zls.exe
- target: win_x64
file: x86_64-windows.tar.zst
bin: bin/zls.exe
schemas:
lsp: vscode:https://raw.githubusercontent.com/ziglang/vscode-zig/master/package.json
bin:
zls: "{{source.asset.bin}}"