hako pushed a commit to branch wip-zig-bootstrap
in repository guix.
commit c743b655f82ee1b5676e893385d212d00b1a946e
Author: Hilton Chain <[email protected]>
AuthorDate: Wed Nov 20 08:36:13 2024 +0800
gnu: Add zig-xkbcommon.
* gnu/packages/zig-xyz.scm (zig-xkbcommon): New variable.
Change-Id: I1e63493f67e3aef1b52b8faa4aaf30a0a16b03ba
---
gnu/packages/zig-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/zig-xyz.scm b/gnu/packages/zig-xyz.scm
index aeac802e6a..b5258588b3 100644
--- a/gnu/packages/zig-xyz.scm
+++ b/gnu/packages/zig-xyz.scm
@@ -191,6 +191,27 @@ interface.")
(home-page "https://codeberg.org/ifreund/zig-wlroots")
(license license:expat)))
+(define-public zig-xkbcommon
+ (package
+ (name "zig-xkbcommon")
+ (version "0.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/ifreund/zig-xkbcommon")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "16f59n7l2gcpnq8gb4v8skr4jhb2l6ax75rna92nqzj15f4ikqag"))))
+ (build-system zig-build-system)
+ (arguments (list #:skip-build? #t))
+ (propagated-inputs (list libxkbcommon))
+ (synopsis "Zig bindings for libxkbcommon")
+ (description "This package provides Zig bindings for @code{libxkbcommon}.")
+ (home-page "https://codeberg.org/ifreund/zig-xkbcommon")
+ (license license:expat)))
+
(define-public zig-zls
(package
(name "zig-zls")