guix-patches
[Top][All Lists]
Advanced

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

[bug#73184] [PATCH 3/5] gnu: Add go-github-com-tinylib-msgp.


From: Artyom V. Poptsov
Subject: [bug#73184] [PATCH 3/5] gnu: Add go-github-com-tinylib-msgp.
Date: Wed, 11 Sep 2024 22:23:13 +0300

* gnu/packages/golang-xyz.scm (go-github-com-tinylib-msgp): New variable.

Change-Id: I278d2d249029c9eb5f8eddb82007e9a22d65a9bc
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 89751e8fcb..eb04ff639b 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6529,6 +6529,33 @@ (define-public go-github-com-tidwall-sjson
 document.")
     (license license:expat)))
 
+(define-public go-github-com-tinylib-msgp
+  (package
+    (name "go-github-com-tinylib-msgp")
+    (version "1.2.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tinylib/msgp";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0mplb420i9cmf40qwsqzd1plln52nl0x0b7nkxffyr0pdh9za79a"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/tinylib/msgp"))
+    (propagated-inputs
+     (list go-github-com-philhofer-fwd
+           go-golang-org-x-tools))
+    (home-page "https://github.com/tinylib/msgp";)
+    (synopsis "Go code generator for MessagePack")
+    (description
+     "This is a code generation tool and serialization library for
+@url{http://msgpack.org/, MessagePack}.")
+    (license license:expat)))
+
 (define-public go-github-com-tklauser-go-sysconf
   (package
     (name "go-github-com-tklauser-go-sysconf")
-- 
2.46.0






reply via email to

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