mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: go-github-com-bitly-go-hostpool: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-bitly-go-hostpool): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ia314e6134f229c004f23d99a9c42dbd0adf105f8
This commit is contained in:
parent
6d22865f58
commit
714462744a
3 changed files with 26 additions and 25 deletions
|
@ -89,6 +89,31 @@ (define-public go-github-com-armon-go-radix
|
||||||
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.")
|
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-bitly-go-hostpool
|
||||||
|
(package
|
||||||
|
(name "go-github-com-bitly-go-hostpool")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bitly/go-hostpool")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1iibj7dwymczw7cknrh6glc6sdpp4yap2plnyr8qphynwrzlz73w"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/bitly/go-hostpool"))
|
||||||
|
(native-inputs (list go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/bitly/go-hostpool")
|
||||||
|
(synopsis "Pool among multiple hosts from Golang")
|
||||||
|
(description
|
||||||
|
"This package provides a Go package to intelligently and flexibly pool among
|
||||||
|
multiple hosts from your Go application. Host selection can operate in round
|
||||||
|
robin or epsilon greedy mode, and unresponsive hosts are avoided.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-bitly-timer-metrics
|
(define-public go-github-com-bitly-timer-metrics
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-bitly-timer-metrics")
|
(name "go-github-com-bitly-timer-metrics")
|
||||||
|
|
|
@ -1881,31 +1881,6 @@ (define-public go-github-com-dhowett-go-plist
|
||||||
types.")
|
types.")
|
||||||
(license license:giftware))))
|
(license license:giftware))))
|
||||||
|
|
||||||
(define-public go-github-com-bitly-go-hostpool
|
|
||||||
(package
|
|
||||||
(name "go-github-com-bitly-go-hostpool")
|
|
||||||
(version "0.1.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/bitly/go-hostpool")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1iibj7dwymczw7cknrh6glc6sdpp4yap2plnyr8qphynwrzlz73w"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/bitly/go-hostpool"))
|
|
||||||
(native-inputs (list go-github-com-stretchr-testify))
|
|
||||||
(home-page "https://github.com/bitly/go-hostpool")
|
|
||||||
(synopsis "Pool among multiple hosts from Golang")
|
|
||||||
(description
|
|
||||||
"This package provides a Go package to intelligently and flexibly pool among
|
|
||||||
multiple hosts from your Go application. Host selection can operate in round
|
|
||||||
robin or epsilon greedy mode, and unresponsive hosts are avoided.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-blanu-dust
|
(define-public go-github-com-blanu-dust
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-blanu-dust")
|
(name "go-github-com-blanu-dust")
|
||||||
|
|
|
@ -36,6 +36,7 @@ (define-module (gnu packages high-availability)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#: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-compression)
|
||||||
#:use-module (gnu packages golang-crypto)
|
#:use-module (gnu packages golang-crypto)
|
||||||
|
|
Loading…
Reference in a new issue