gnu: Add guile-hygguile.

* gnu/packages/guile-xyz.scm (guile-hygguile): New variable.

Change-Id: I62547a54f85c96e87d84f38a89aa5127334fe973
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Josep Bigorra 2025-06-11 12:49:52 +02:00 committed by Hilton Chain
parent 3598e29f04
commit efbd55d6fa
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -6590,6 +6590,36 @@ The resulting QR codes can be rendered to ASCII art strings or to PNG images (us
(home-page "https://github.com/artyom-poptsov/guile-qr-code")
(license (list license:gpl3+ license:expat))))
(define-public guile-hygguile
(package
(name "guile-hygguile")
(version "0.5.9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/jjba23/hygguile.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01xixcay0qsbkmd47j46ky6cqn278ayb78sdf2cgq5fn3rbgigsc"))))
(build-system guile-build-system)
(native-inputs (list guile-3.0))
(arguments
(list
#:source-directory "src"))
(home-page "https://codeberg.org/jjba23/hygguile")
(synopsis "Web UI component library for Guile Scheme projects")
(description
"Hygguile is a library that allows you to create cozy web user-interfaces
using Guile Scheme, by defining an expressive @acronym{DSL, domain-specific
language}, and by leveraging the power of S-expressions, SXML and TailwindCSS.
The project aims to provide reusable, professional-looking and accessible
web components, whose names resemble the HTML counterparts, thus
easing the learning curve, and reducing the cognitive load.")
(license license:lgpl3+)))
(define-public guile-quickcheck
(package
(name "guile-quickcheck")