gnu: Add go-github-com-vmihailenco-msgpack-v4.

* gnu/packages/golang.scm (go-github-com-vmihailenco-msgpack-v4): New
variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Sharlatan Hellseher 2022-01-28 10:37:09 +01:00 committed by Nicolas Goaziou
parent 63b194080d
commit 4db80f3f0c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -8879,6 +8879,33 @@ (define-public go-gopkg-in-djherbis-times-v1
"Provides a platform-independent way to get atime, mtime, ctime and btime for files.") "Provides a platform-independent way to get atime, mtime, ctime and btime for files.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-vmihailenco-msgpack-v4
(package
(name "go-github-com-vmihailenco-msgpack-v4")
(version "4.3.12")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/vmihailenco/msgpack")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0aiavk7b5fn050bbc0naldk2bsl60f8wil5i6a1cfp3lxxnvmvng"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/vmihailenco/msgpack/v4"))
(native-inputs
(list go-gopkg-in-check-v1))
(propagated-inputs
(list go-github-com-vmihailenco-tagparser))
(home-page "https://github.com/vmihailenco/msgpack")
(synopsis "MessagePack encoding for Golang")
(description
"This package provides implementation of MessagePack encoding for Go
programming language.")
(license license:bsd-2)))
(define-public go-github-com-vmihailenco-tagparser (define-public go-github-com-vmihailenco-tagparser
(package (package
(name "go-github-com-vmihailenco-tagparser") (name "go-github-com-vmihailenco-tagparser")