summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-12-16 03:40:25 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:42:03 +0000
commitbb2273cf91d8c6f98d7c63d812fb89bb409f9e1f (patch)
tree94f074c7011f2f9a939d6cff1b24d325ae786fa8
parent4a87bc86c95169acea15d1f9100e40ec0a592209 (diff)
gnu: Add go-github-com-invopop-yaml.
* gnu/packages/golang-xyz.scm (go-github-com-invopop-yaml): New variable. Change-Id: Iacaabe350b28f1afd36d43461d8d60b3b8dab288
-rw-r--r--gnu/packages/golang-xyz.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index edd5a1f0790..8d271839ce8 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4933,6 +4933,32 @@ ABI}.")
"Package strcase converts strings to various cases.")
(license license:expat)))
+(define-public go-github-com-invopop-yaml
+ (package
+ (name "go-github-com-invopop-yaml")
+ (version "0.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/invopop/yaml")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0isvalfivw39hjj20y28g4yws0plzqaym8asz3sr5lfwv5gnq7zg"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/invopop/yaml"))
+ (propagated-inputs
+ (list go-gopkg-in-yaml-v3))
+ (home-page "https://github.com/invopop/yaml")
+ (synopsis "YAML marshaling and unmarshaling support for Golang")
+ (description
+ "This package provides a wrapper around go-yaml designed to enable a
+better way of handling YAML when marshaling to and from structs.")
+ (license license:expat)))
+
(define-public go-github-com-itchyny-timefmt-go
(package
(name "go-github-com-itchyny-timefmt-go")