mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-nsqio-go-nsq: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-nsqio-go-nsq): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ie718c9943dd527281b30c78ab4e23adc764289c1
This commit is contained in:
parent
b41a405649
commit
35445a7c1a
2 changed files with 27 additions and 26 deletions
|
@ -33,6 +33,7 @@
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages golang-check)
|
#:use-module (gnu packages golang-check)
|
||||||
|
#:use-module (gnu packages golang-compression)
|
||||||
#:use-module (gnu packages golang-crypto))
|
#:use-module (gnu packages golang-crypto))
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
@ -377,6 +378,32 @@ library which posts the metrics to the Prometheus client registry and just
|
||||||
updates the registry.")
|
updates the registry.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public go-github-com-nsqio-go-nsq
|
||||||
|
(package
|
||||||
|
(name "go-github-com-nsqio-go-nsq")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/nsqio/go-nsq")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1h9z3z225sdgg7fl3l7x11xn5ch6lm5flgmcj046cdp453qj2qhf"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f ;tests require networking
|
||||||
|
#:import-path "github.com/nsqio/go-nsq"))
|
||||||
|
(propagated-inputs (list go-github-com-golang-snappy))
|
||||||
|
(home-page "https://github.com/nsqio/go-nsq")
|
||||||
|
(synopsis "Consumer/producer library for NSQ")
|
||||||
|
(description
|
||||||
|
"The @code{nsq} Go module provides a high-level @code{Consumer} and
|
||||||
|
@code{Producer} types as well as low-level functions to communicate over the
|
||||||
|
NSQ protocol @url{https://nsq.io/}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-prometheus-client-model
|
(define-public go-github-com-prometheus-client-model
|
||||||
(let ((commit "14fe0d1b01d4d5fc031dd4bec1823bd3ebbe8016")
|
(let ((commit "14fe0d1b01d4d5fc031dd4bec1823bd3ebbe8016")
|
||||||
(revision "2"))
|
(revision "2"))
|
||||||
|
|
|
@ -3099,32 +3099,6 @@ sunset times from geographical coordinates and a date.")
|
||||||
queue.")
|
queue.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-nsqio-go-nsq
|
|
||||||
(package
|
|
||||||
(name "go-github-com-nsqio-go-nsq")
|
|
||||||
(version "1.1.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/nsqio/go-nsq")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1h9z3z225sdgg7fl3l7x11xn5ch6lm5flgmcj046cdp453qj2qhf"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list #:tests? #f ;tests require networking
|
|
||||||
#:import-path "github.com/nsqio/go-nsq"))
|
|
||||||
(propagated-inputs (list go-github-com-golang-snappy))
|
|
||||||
(home-page "https://github.com/nsqio/go-nsq")
|
|
||||||
(synopsis "Consumer/producer library for NSQ")
|
|
||||||
(description
|
|
||||||
"The @code{nsq} Go module provides a high-level @code{Consumer} and
|
|
||||||
@code{Producer} types as well as low-level functions to communicate over the
|
|
||||||
NSQ protocol @url{https://nsq.io/}.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-hebcal-gematriya
|
(define-public go-github-com-hebcal-gematriya
|
||||||
(let ((commit "fe3043f73e415eb82727701d10f2fb40f87675e9")
|
(let ((commit "fe3043f73e415eb82727701d10f2fb40f87675e9")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue