guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit fadf74d20fd721df599c8cdd20bf9957f5f6e371
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 23 19:41:55 2026 +0100

    gnu: Add go-github-com-ugorji-go-codec.
    
    * gnu/packages/golang-xyz.scm (go-github-com-ugorji-go-codec): New variable.
---
 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 87084db4bd..f97eb54a1d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -29138,6 +29138,33 @@ stopped.")
 dependencies of @url{https://u-root.org/, u-root} project.")
     (license license:bsd-3)))
 
+(define-public go-github-com-ugorji-go-codec
+  (package
+    (name "go-github-com-ugorji-go-codec")
+    (version "1.3.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/ugorji/go";)
+              (commit (go-version->git-ref version #:subdir "codec"))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1fgfvmwqmnpil9sv9zgdw9hrf41fp8gv4qwfh7l4n1p8rv7vvxvk"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/ugorji/go/codec"
+      #:unpack-path "github.com/ugorji/go"))
+    (native-inputs
+     (list go-github-com-google-go-cmp))
+    (home-page "https://github.com/ugorji/go";)
+    (synopsis "Idiomatic codec and RPC Go library")
+    (description
+     "Package codec provides a High Performance, Feature-Rich Idiomatic Go
+codec/encoding library for BINC, MSGPACK, CBOR, JSON.")
+    (license license:expat)))
+
 (define-public go-github-com-unknwon-goconfig
   (package
     (name "go-github-com-unknwon-goconfig")

Reply via email to