guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

21/22: gnu: Add go-github-com-whyrusleeping-cbor.


From: guix-commits
Subject: 21/22: gnu: Add go-github-com-whyrusleeping-cbor.
Date: Sun, 7 Jul 2024 11:10:42 -0400 (EDT)

sharlatan pushed a commit to branch master
in repository guix.

commit db03903c8f64f135aedbfbd1aaaed93433a9e0b8
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Jul 7 16:00:30 2024 +0100

    gnu: Add go-github-com-whyrusleeping-cbor.
    
    * gnu/packages/golang-web.scm (go-github-com-whyrusleeping-cbor): New 
variable.
    
    Change-Id: I6f411f6766178a754490864e5dc3a5fc826607dd
---
 gnu/packages/golang-web.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index a8eee0c214..051fa75b92 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -2848,6 +2848,43 @@ encoding library for the MessagePack, CBOR, JSON and the 
Binc formats.")
 replacement for native @code{net/http} module.")
     (license license:expat)))
 
+(define-public go-github-com-whyrusleeping-cbor
+  (package
+    (name "go-github-com-whyrusleeping-cbor")
+    (version "0.0.0-20171005072247-63513f603b11")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/whyrusleeping/cbor";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0v3kgzk8grz17my2vhv12qi9dgpx3z86hy9ff1c4qw83mg8hm67s"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/whyrusleeping/cbor"
+      #:phases
+      #~(modify-phases %standard-phases
+          ;; XXX: Replace when go-build-system supports nested path.
+          (delete 'build)
+          (replace 'check
+            (lambda* (#:key import-path tests? #:allow-other-keys)
+              (when tests?
+                (with-directory-excursion (string-append "src/" import-path)
+                  ;; No test vectors were provided with git checkout:
+                  ;; var errpath string = "../test-vectors/appendix_a.json"
+                  (substitute* "go/cbor_test.go"
+                    (("TestDecodeVectors") "offTestDecodeVectors"))
+                  (invoke "go" "test" "-v" "./..."))))))))
+    (home-page "https://github.com/whyrusleeping/cbor";)
+    (synopsis "Concise Binary Object Representation in Golang")
+    (description
+     "@acronym{Concise Binary Object Representation,CBOR} is a superset of
+JSON's schema that's faster and more compact.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-whyrusleeping-chunker
   (package
     (name "go-github-com-whyrusleeping-chunker")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]