sharlatan pushed a commit to branch go-team
in repository guix.
commit 12453e4b99119f5cbfadc1673795e20fcccba62e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 22 14:33:32 2025 +0000
gnu: Add go-github-com-komkom-toml.
* gnu/packages/golang-xyz.scm (go-github-com-komkom-toml): New variable.
Change-Id: I6e0225301d3423453dcc88b747eca40a8e4e9d6e
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d5a5ee44d2..2c87ba1e93 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -10010,6 +10010,33 @@ processing.")
@url{https://github.com/charmbracelet/lipgloss, lipgloss} Styles.")
(license license:asl2.0)))
+(define-public go-github-com-komkom-toml
+ (package
+ (name "go-github-com-komkom-toml")
+ (version "0.1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/komkom/toml")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1rl44jkfdwzjqp31aif6ywyli6pzl2999wp3807vzxz0yd6chwfw"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/komkom/toml"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-pkg-errors))
+ (home-page "https://github.com/komkom/toml")
+ (synopsis "Instream TOML to JSON encoder")
+ (description
+ "This package provides a TOML parser and JSON encoder.")
+ (license license:expat)))
+
(define-public go-github-com-kortschak-utter
(package
(name "go-github-com-kortschak-utter")