diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-07 14:18:46 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:42 +0000 |
commit | 6c79dc4548ac45ce45242f0f1e5a997bd758d62f (patch) | |
tree | 28e00344c99ad2badd6ebd8bb015cb41e42594b9 | |
parent | 8a67b121b64c3457dfa693eee85a1d9cd65c4387 (diff) |
gnu: Add go-github-com-vmihailenco-msgpack-v5.
* gnu/packages/golang-xyz.scm (go-github-com-vmihailenco-msgpack-v5): New variable.
Change-Id: I80c504fe09c917188f441c6e71a1b87db6c05fd0
-rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 67a87516fb..8e854462ed 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -13187,6 +13187,29 @@ weighted moving averages}.") programming language.") (license license:bsd-2))) +(define-public go-github-com-vmihailenco-msgpack-v5 + (package + (inherit go-github-com-vmihailenco-msgpack-v4) + (name "go-github-com-vmihailenco-msgpack-v5") + (version "5.4.1") + (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 "0vkyyywvip0vwjmnmnmkl9hz345k54nigj2mq8fbbjx96xpgghvz")))) + (arguments + (list + #:import-path "github.com/vmihailenco/msgpack/v5")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-vmihailenco-tagparser + go-google-golang-org-appengine)))) + (define-public go-github-com-warpfork-go-fsx (package (name "go-github-com-warpfork-go-fsx") |