[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/37: gnu: Add go-github-com-ugorji-go-codec.
From: |
guix-commits |
Subject: |
19/37: gnu: Add go-github-com-ugorji-go-codec. |
Date: |
Wed, 6 Mar 2024 18:46:19 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit a28498d83d644d02a0e02ce74954c6e936ff0543
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Sat Feb 24 10:40:58 2024 +0100
gnu: Add go-github-com-ugorji-go-codec.
* gnu/packages/golang-web.scm (go-github-com-ugorji-go-codec): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/golang-web.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 4f2c6f8c1a..5f5278e11c 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1394,6 +1394,38 @@ an interface to implement any other minifier.")
sockets.")
(license license:expat))))
+(define-public go-github-com-ugorji-go-codec
+ (package
+ (name "go-github-com-ugorji-go-codec")
+ (version "1.2.12")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ugorji/go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "11j0sd7kli2bh2npfr2znnvdjsk118rs8khqzfdp6pb5jm0l20ib"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ugorji/go/codec"
+ #:unpack-path "github.com/ugorji/go"
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-benchmarks
+ (lambda* (#:key import-path #:allow-other-keys)
+ (delete-file-recursively (string-append "src/"
+ import-path
+ "/bench")))))))
+ (propagated-inputs (list go-golang-org-x-tools))
+ (home-page "https://github.com/ugorji/go")
+ (synopsis "Codec and encoding library for various serialization formats")
+ (description
+ "This package provides a high performance and feature rich codec and
+encoding library for the MessagePack, CBOR, JSON and the Binc formats.")
+ (license license:expat)))
+
(define-public go-github-com-valyala-fasthttp
(package
(name "go-github-com-valyala-fasthttp")
- branch master updated (201f90f34f -> b4107ca3ad), guix-commits, 2024/03/06
- 01/37: gnu: Add go-github-com-tklauser-numcpus., guix-commits, 2024/03/06
- 06/37: gnu: go-github-com-shirou-gopsutil: Reformat with guix style., guix-commits, 2024/03/06
- 07/37: gnu: Add go-github-com-shirou-gopsutil-v3., guix-commits, 2024/03/06
- 02/37: gnu: Add go-github-com-tklauser-go-sysconf., guix-commits, 2024/03/06
- 09/37: gnu: go-github-com-cheggaaa-pb-v3: Enable tests., guix-commits, 2024/03/06
- 08/37: gnu: go-github-com-vividcortex-ewma: Fix import-path., guix-commits, 2024/03/06
- 18/37: gnu: Add go-github-com-nwaples-rardecode-v2., guix-commits, 2024/03/06
- 19/37: gnu: Add go-github-com-ugorji-go-codec.,
guix-commits <=
- 23/37: gnu: go-github-com-spf13-afero: Add missing input., guix-commits, 2024/03/06
- 21/37: gnu: sqls: Add missing inputs., guix-commits, 2024/03/06
- 26/37: gnu: go-go-uber-org-zap: Move to golang-xyz., guix-commits, 2024/03/06
- 27/37: gnu: Add go-github-com-cskr-pubsub., guix-commits, 2024/03/06
- 30/37: gnu: go-github-com-hashicorp-go-syslog: Move to golang-xyz., guix-commits, 2024/03/06
- 13/37: gnu: go-github-com-vividcortex-ewma: Move to golang-xyz., guix-commits, 2024/03/06
- 14/37: gnu: Add go-github-com-dave-jennifer., guix-commits, 2024/03/06
- 03/37: gnu: Add go-numcpus., guix-commits, 2024/03/06
- 04/37: gnu: go-github-com-shirou-gopsutil: Move to golang-xyz., guix-commits, 2024/03/06
- 12/37: gnu: go-github-com-cheggaaa-pb-v3: Move to golang-xyz., guix-commits, 2024/03/06