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>master
parent
63b194080d
commit
4db80f3f0c
gnu/packages
|
@ -8879,6 +8879,33 @@ non-cryptographic hash algorithm, working at speeds close to RAM limits.")
|
||||||
"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")
|
||||||
|
|
Reference in New Issue