diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-22 14:33:32 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:18 +0100 |
commit | e850c2f15a96666c733ef286e14d1785bedab78d (patch) | |
tree | 4a71c643e87ef60d58fbef7bb6518d2fc5c54e3d /gnu/packages/golang-xyz.scm | |
parent | 935f548d0d4fd59c5cf198692e1899cdd370b570 (diff) |
gnu: Add go-github-com-komkom-toml.
* gnu/packages/golang-xyz.scm (go-github-com-komkom-toml): New variable.
Change-Id: I6e0225301d3423453dcc88b747eca40a8e4e9d6e
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 801f1aa9b7..9a60dd4155 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") |