summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-23 19:41:55 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-23 21:15:02 +0100
commit2a4e2195ed5dad8584efa2dbefa1908ca0f082bb (patch)
tree44a8960a1aff481a06d9801ad5f6584d3f6ef516 /gnu
parent1f94e7aecc0f482dae6cbb83fa521bc11ea15d68 (diff)
gnu: Add go-github-com-ugorji-go-codec.
* gnu/packages/golang-xyz.scm (go-github-com-ugorji-go-codec): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 74e3e4e0b9f..dcca92497ea 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -30484,6 +30484,33 @@ ESXi, Xen, or tboot. They are meant to be used with LinuxBoot.
30484dependencies of @url{https://u-root.org/, u-root} project.") 30484dependencies of @url{https://u-root.org/, u-root} project.")
30485 (license license:bsd-3))) 30485 (license license:bsd-3)))
30486 30486
30487(define-public go-github-com-ugorji-go-codec
30488 (package
30489 (name "go-github-com-ugorji-go-codec")
30490 (version "1.3.1")
30491 (source
30492 (origin
30493 (method git-fetch)
30494 (uri (git-reference
30495 (url "https://github.com/ugorji/go")
30496 (commit (go-version->git-ref version #:subdir "codec"))))
30497 (file-name (git-file-name name version))
30498 (sha256
30499 (base32 "1fgfvmwqmnpil9sv9zgdw9hrf41fp8gv4qwfh7l4n1p8rv7vvxvk"))))
30500 (build-system go-build-system)
30501 (arguments
30502 (list
30503 #:import-path "github.com/ugorji/go/codec"
30504 #:unpack-path "github.com/ugorji/go"))
30505 (native-inputs
30506 (list go-github-com-google-go-cmp))
30507 (home-page "https://github.com/ugorji/go")
30508 (synopsis "Idiomatic codec and RPC Go library")
30509 (description
30510 "Package codec provides a High Performance, Feature-Rich Idiomatic Go
30511codec/encoding library for BINC, MSGPACK, CBOR, JSON.")
30512 (license license:expat)))
30513
30487(define-public go-github-com-unknwon-goconfig 30514(define-public go-github-com-unknwon-goconfig
30488 (package 30515 (package
30489 (name "go-github-com-unknwon-goconfig") 30516 (name "go-github-com-unknwon-goconfig")