all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 70684@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Rodion Goritskov <rodion.goritskov@gmail.com>
Subject: [bug#70684] [PATCH v2 5/9] gnu: Add go-github-com-fxamacker-cbor-v2.
Date: Thu,  4 Jul 2024 12:10:55 +0100	[thread overview]
Message-ID: <3902f1529ae277994eb669be5c078f0e1011d157.1720090727.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1720090727.git.sharlatanus@gmail.com>

From: Rodion Goritskov <rodion.goritskov@gmail.com>

* gnu/packages/golang-xyz.scm (go-github-com-fxamacker-cbor-v2): New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I19e13404586613fd4629c35f50264120df264c6b
---
 gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d63c184bf6..e7811766df 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1775,6 +1775,35 @@ (define-public go-github-com-flynn-archive-go-shlex
       (home-page "https://github.com/flynn-archive/go-shlex")
       (license license:asl2.0))))
 
+(define-public go-github-com-fxamacker-cbor-v2
+  (package
+    (name "go-github-com-fxamacker-cbor-v2")
+    (version "2.7.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/fxamacker/cbor")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "039lk7n5155gy2sh55i1darcvxhv9fim2xmnvmx0xi9ihnrnczln"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/fxamacker/cbor/v2"))
+    (propagated-inputs
+     (list go-github-com-x448-float16))
+    (home-page "https://github.com/fxamacker/cbor")
+    (synopsis "CBOR Codec in Go")
+    (description
+     "This package implement functionality for encoding and decoding
+@acronym{Concise Binary Object Representation,CBOR}
+(@url{https://www.rfc-editor.org/rfc/rfc8949.html,RFC 8949}) and CBOR
+Sequences,with CBOR tags, Go struct tags (toarray, keyasint, omitempty),
+float64/32/16, big.Int.")
+    (license license:expat)))
+
 (define-public go-github-com-gabriel-vasile-mimetype
   (package
     (name "go-github-com-gabriel-vasile-mimetype")
-- 
2.41.0





  parent reply	other threads:[~2024-07-04 11:13 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-30 20:18 [bug#70684] [PATCH go-team 0/6] Update miniflux to 2.1.3 Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 1/6] gnu: go-github-com-andybalholm-brotli: Update to 1.1.0 Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 2/6] gnu: Add go-github-com-google-go-tpm Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 3/6] gnu: Add go-github-com-x448-float16 Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 4/6] gnu: Add go-github-com-abadojack-whatlanggo and go-github-com-fxamacker-cbor-v2 Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 5/6] gnu: Add go-github-com-go-webauthn Rodion Goritskov
2024-04-30 20:42 ` [bug#70684] [PATCH go-team 6/6] gnu: miniflux: Update to 2.1.3 Rodion Goritskov
2024-05-02 22:13 ` [bug#70684] [PATCH go-team 0/6] Update miniflux " Sharlatan Hellseher
2024-05-07 19:22   ` Rodion Goritskov
2024-07-04 11:10 ` [bug#70684] [PATCH v2 0/9] " Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 1/9] gnu: go-github-com-andybalholm-brotli: Update to 1.1.0 Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 2/9] gnu: Add go-github-com-google-go-tpm Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 3/9] gnu: Add go-github-com-x448-float16 Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 4/9] gnu: Add go-github-com-abadojack-whatlanggo Sharlatan Hellseher
2024-07-04 11:10   ` Sharlatan Hellseher [this message]
2024-07-04 11:10   ` [bug#70684] [PATCH v2 6/9] gnu: Add go-github-com-go-webauthn-x Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 7/9] gnu: Add go-github-com-go-webauthn-webauthn Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 8/9] gnu: miniflux: Update to 2.1.3 Sharlatan Hellseher
2024-07-04 11:10   ` [bug#70684] [PATCH v2 9/9] gnu: miniflux: Adjust indentation Sharlatan Hellseher
2024-07-11 12:12 ` bug#70684: [PATCH go-team 0/6] Update miniflux to 2.1.3 Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3902f1529ae277994eb669be5c078f0e1011d157.1720090727.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=70684@debbugs.gnu.org \
    --cc=rodion.goritskov@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.