[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: Add go-github-com-nats-io-nats-go.
From: |
guix-commits |
Subject: |
07/11: gnu: Add go-github-com-nats-io-nats-go. |
Date: |
Thu, 8 Feb 2024 16:48:10 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit e3146f55e8a92347868bbe268c51b2ab5d70df70
Author: Benjamin <benjamin@uvy.fr>
AuthorDate: Thu Feb 8 21:23:39 2024 +0000
gnu: Add go-github-com-nats-io-nats-go.
* gnu/packages/golang-xyz.scm (go-github-com-nats-io-nats-go): New variable.
Change-Id: Ic2897e20fdcd8d68505f8a96281071fe3de224c9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/golang-xyz.scm | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index bfe9cee5e6..a1390ad093 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -27,7 +27,8 @@
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages golang)
- #:use-module (gnu packages golang-check))
+ #:use-module (gnu packages golang-check)
+ #:use-module (gnu packages golang-crypto))
;;; Commentary:
;;;
@@ -144,6 +145,34 @@ Differentiation between text and binary files}.
(description "This package provides an idiomatic Go retry module.")
(license license:expat)))
+(define-public go-github-com-nats-io-nats-go
+ (package
+ (name "go-github-com-nats-io-nats-go")
+ (version "1.31.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nats-io/nats.go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0jqzqjwpp3p4fwpv2qcwskysnvgggp22p60zg3w25d3xsainjpbi"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:go go-1.20
+ #:import-path "github.com/nats-io/nats.go"))
+ (propagated-inputs (list go-golang-org-x-text
+ go-github-com-nats-io-nuid
+ go-github-com-nats-io-nkeys
+ go-github-com-klauspost-compress))
+ (home-page "https://github.com/nats-io/nats.go")
+ (synopsis "Go Client for NATS server")
+ (description
+ "This package provides a Go client for the NATS messaging system.")
+ (license license:asl2.0)))
+
(define-public go-github-com-nats-io-nuid
(package
(name "go-github-com-nats-io-nuid")
- branch master updated (8798f940ad -> 90fe823638), guix-commits, 2024/02/08
- 01/11: gnu: Add go-github-com-minio-highwayhash., guix-commits, 2024/02/08
- 03/11: gnu: Add go-go-uber-org-automaxprocs., guix-commits, 2024/02/08
- 04/11: gnu: Add go-github-com-nats-io-nuid., guix-commits, 2024/02/08
- 02/11: gnu: Add go-github-com-prashantv-gostub., guix-commits, 2024/02/08
- 06/11: gnu: Add go-github-com-nats-io-jwt-v2., guix-commits, 2024/02/08
- 11/11: gnu: nats-server: Update to 2.10.10., guix-commits, 2024/02/08
- 07/11: gnu: Add go-github-com-nats-io-nats-go.,
guix-commits <=
- 05/11: gnu: Add go-github-com-nats-io-nkeys., guix-commits, 2024/02/08
- 08/11: gnu: Add nats-server., guix-commits, 2024/02/08
- 10/11: gnu: go-github-com-nats-io-nats-go: Update to 1.32.0., guix-commits, 2024/02/08
- 09/11: gnu: go-github-com-nats-io-nkeys: Update to 0.4.7., guix-commits, 2024/02/08