diff options
author | Ashvith Shetty <ashvithshetty0010@zohomail.in> | 2025-03-24 18:41:34 +0530 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-03-25 15:38:51 +0800 |
commit | 82619151c7364c7f065a13b6209e2b1cae73a171 (patch) | |
tree | 9ec163ea233f2334ed6636834a3f1ad83edaae0e | |
parent | 3be752259d490cfce1108735a961705734b5799d (diff) |
gnu: Add zig-zigimg.
* gnu/packages/zig-xyz.scm (zig-zigimg): New variable.
Change-Id: If87e1f65d3aa544b30ea3fb0da4e292bcec5e567
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/zig-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm index 3cc2b93767..99d0e15ffa 100644 --- a/gnu/packages/zig-xyz.scm +++ b/gnu/packages/zig-xyz.scm @@ -323,6 +323,30 @@ interface.") (home-page "https://codeberg.org/ifreund/zig-xkbcommon") (license license:expat))) +(define-public zig-zigimg + ;; No tagged release. + (let ((commit "52f10dd3e3b1cd4614fe72a8a8f0eddc7700bc0a") + (revision "0")) + (package + (name "zig-zigimg") + (version (git-version "0.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zigimg/zigimg") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187nh49rdv37arlvf056jiv58n4y87q2pm6qvznn75zrszjlvp0b")))) + (build-system zig-build-system) + (home-page "https://github.com/zigimg/zigimg") + (synopsis "Zig image library") + (description + "@code{zigimg} is a Zig library for reading and writing different image +formats.") + (license license:expat)))) + (define-public zig-zls-0.10 (package (name "zig-zls") |