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