diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-29 16:03:28 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:36 +0000 |
commit | 9783b8b9747cf702a6ad9100fbdd9c5cb207826e (patch) | |
tree | 03551fa9b81cac8fe70fba9d8462c2f0458acea5 /gnu/packages/golang-xyz.scm | |
parent | 2ebaf304a16558c565572497e9758a740af7ec76 (diff) |
gnu: Add go-gopkg-in-vmihailenco-msgpack-v2.
* gnu/packages/golang-xyz.scm (go-gopkg-in-vmihailenco-msgpack-v2): New variable.
Change-Id: I09b8e71702ca169ec55a30e480529ef06fa0b574
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b2a116c4a8..5246df21d5 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12658,6 +12658,33 @@ machine readable. It is modeled after the Go standard library's @code{io} and (package-arguments go-github-com-op-go-logging) ((#:import-path _) "gopkg.in/op/go-logging.v1"))))) +(define-public go-gopkg-in-vmihailenco-msgpack-v2 + (package + (name "go-gopkg-in-vmihailenco-msgpack-v2") + (version "2.9.2") + (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 "08rcdnshc252nmlxkswx8xgiwr2ry7cq806gcw1836b00hwlwmmz")))) + (build-system go-build-system) + (arguments + (list + #:import-path "gopkg.in/vmihailenco/msgpack.v2" + #:test-flags #~(list "-skip" "TestTypes"))) + (native-inputs + (list go-gopkg-in-check-v1)) + (home-page "https://msgpack.uptrace.dev/") + (synopsis "MessagePack encoding for Golang") + (description + "This package provides implementation of MessagePack encoding for Go +programming language.") + (license license:bsd-2))) + (define-public go-gopkg-in-warnings-v0 (package (name "go-gopkg-in-warnings-v0") |