diff options
author | Josep Bigorra <jjbigorra@gmail.com> | 2025-06-11 12:49:52 +0200 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-06-12 20:17:47 +0800 |
commit | efbd55d6fa2fb32f311054a17df3929efe05f0fe (patch) | |
tree | e69227edce29ecf804c86f83ba399a0133e1262d | |
parent | 3598e29f04787477f084d3a0afe4829c21573f13 (diff) |
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>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index fabe887bfe..6f7bca9dfa 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -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") |