~ruther/guix-local

efbd55d6fa2fb32f311054a17df3929efe05f0fe — Josep Bigorra 1 year, 1 month ago 3598e29
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>
1 files changed, 30 insertions(+), 0 deletions(-)

M gnu/packages/guile-xyz.scm
M gnu/packages/guile-xyz.scm => gnu/packages/guile-xyz.scm +30 -0
@@ 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")