1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add go-github-com-komkom-toml.

* gnu/packages/golang-xyz.scm (go-github-com-komkom-toml): New variable.

Change-Id: I6e0225301d3423453dcc88b747eca40a8e4e9d6e
This commit is contained in:
Sharlatan Hellseher 2025-02-22 14:33:32 +00:00
parent 935f548d0d
commit e850c2f15a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -10045,6 +10045,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")