hako pushed a commit to branch master
in repository guix.

commit 82619151c7364c7f065a13b6209e2b1cae73a171
Author: Ashvith Shetty <[email protected]>
AuthorDate: Mon Mar 24 18:41:34 2025 +0530

    gnu: Add zig-zigimg.
    
    * gnu/packages/zig-xyz.scm (zig-zigimg): New variable.
    
    Change-Id: If87e1f65d3aa544b30ea3fb0da4e292bcec5e567
    Signed-off-by: Hilton Chain <[email protected]>
    Modified-by: Hilton Chain <[email protected]>
---
 gnu/packages/zig-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

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")

Reply via email to