1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: Add go-gojay.

* gnu/packages/golang-web.scm (go-gojay): New variable.

Change-Id: Ia2ba75f42fe8b39f407b7420cdd285bd723a76a0
This commit is contained in:
Sharlatan Hellseher 2024-12-15 11:55:16 +00:00
parent 1ce31d6629
commit 595872742a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6724,6 +6724,20 @@ protocol.")
;;; Executables:
;;;
(define-public go-gojay
(package
(inherit go-github-com-francoispqt-gojay)
(name "go-gojay")
(arguments
(list
#:tests? #f ; already tested in the library
#:install-source? #f
#:import-path "github.com/francoispqt/gojay/gojay"
#:unpack-path "github.com/francoispqt/gojay"))
(description
"This package provides a command line tool to generate gojay's marshaling
and unmarshaling interface implementation for custom struct type(s).")))
(define-public go-html2text
(package
(inherit go-github-com-jaytaylor-html2text)