diff options
author | Hilton Chain <hako@ultrarare.space> | 2024-11-20 09:48:02 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2024-12-31 10:56:36 +0800 |
commit | 46e66ff3317b71027686479f9fb08335ac448eb7 (patch) | |
tree | dde30d1ac700e4ca016a506bbd2401099819238a | |
parent | 7846c18ae2ae32cb374f3140a58df6f54af6db98 (diff) |
gnu: Add zig-zls-0.13.
* gnu/packages/zig-xyz.scm (zig-zls-0.13): New variable.
Change-Id: Ic01fa15bc46a1613189ad89b6a1595ccd64020e1
-rw-r--r-- | gnu/packages/zig-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm index 24fb608052..2d2eb3b32e 100644 --- a/gnu/packages/zig-xyz.scm +++ b/gnu/packages/zig-xyz.scm @@ -337,3 +337,23 @@ Language Server Protocol} for the Zig programming language.") #:zig-test-flags #~(list #$version-data-path)))) (inputs (list zig-0.12 zig-diffz zig-known-folders)))) + +(define-public zig-zls-0.13 + (let ((base zig-zls-0.12)) + (package + (inherit base) + (name "zig-zls") + (version "0.13.0") + (source (origin + (inherit (package-source base)) + (uri (git-reference + (url "https://github.com/zigtools/zls") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1dbg06v136yjcs9grc6xwsmv0cm39c0sdkh5vzn7h1qxxka6ixlp")))) + (build-system zig-build-system) + (inputs + (modify-inputs (package-inputs base) + (replace "zig" zig-0.13)))))) |