guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 90a917605b0016fb08b82273cba55742427d0501
Author: Sören Tempel <[email protected]>
AuthorDate: Mon Dec 1 13:15:13 2025 +0100
gnu: Add go-github-com-yuin-goldmark-meta.
* gnu/packages/golang-xyz.scm (go-github-com-yuin-goldmark-meta): New
variable.
Change-Id: I8497bce5a679de7605ddf22ddb18305aa011ed9d
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 7343fa835f..b5b6edfb60 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24198,6 +24198,31 @@ deltas can be applied to a JSON object to \"patch\"
them.")
common sequence} values from two arbitrary arrays.")
(license license:expat)))
+(define-public go-github-com-yuin-goldmark-meta
+ (package
+ (name "go-github-com-yuin-goldmark-meta")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/yuin/goldmark-meta")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "07dnwpkcifk9lw25ncflwdzmp8xqwbsbq0bnw3v7ljz9i8zi3ya3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/yuin/goldmark-meta"))
+ (propagated-inputs (list go-gopkg-in-yaml-v2 go-github-com-yuin-goldmark))
+ (home-page "https://github.com/yuin/goldmark-meta")
+ (synopsis "YAML metadata extension for the goldmark markdown parser")
+ (description
+ "Extension for the @code{goldmark} markdown parser which enables
+defining document metadata in the YAML format.")
+ (license license:expat)))
+
(define-public go-github-com-yuin-gopher-lua
(package
(name "go-github-com-yuin-gopher-lua")