diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-07 21:55:26 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-13 14:33:08 +0000 |
| commit | 714462744a25eccd6a5b77bccc7a032cc01698f8 (patch) | |
| tree | 3c575ddf528446471ce633b9477aac7484a0e4c7 /gnu/packages | |
| parent | 6d22865f583ac04a4166ce6cf07da586beb2500a (diff) | |
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
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 | ||||
| -rw-r--r-- | gnu/packages/golang.scm | 25 | ||||
| -rw-r--r-- | gnu/packages/high-availability.scm | 1 |
3 files changed, 26 insertions, 25 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index e3ecae5fe52..f324624f481 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm | |||
| @@ -89,6 +89,31 @@ optimized for sparse nodes of | |||
| 89 | @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.") | 89 | @url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.") |
| 90 | (license license:expat))) | 90 | (license license:expat))) |
| 91 | 91 | ||
| 92 | (define-public go-github-com-bitly-go-hostpool | ||
| 93 | (package | ||
| 94 | (name "go-github-com-bitly-go-hostpool") | ||
| 95 | (version "0.1.0") | ||
| 96 | (source | ||
| 97 | (origin | ||
| 98 | (method git-fetch) | ||
| 99 | (uri (git-reference | ||
| 100 | (url "https://github.com/bitly/go-hostpool") | ||
| 101 | (commit (string-append "v" version)))) | ||
| 102 | (file-name (git-file-name name version)) | ||
| 103 | (sha256 | ||
| 104 | (base32 "1iibj7dwymczw7cknrh6glc6sdpp4yap2plnyr8qphynwrzlz73w")))) | ||
| 105 | (build-system go-build-system) | ||
| 106 | (arguments | ||
| 107 | '(#:import-path "github.com/bitly/go-hostpool")) | ||
| 108 | (native-inputs (list go-github-com-stretchr-testify)) | ||
| 109 | (home-page "https://github.com/bitly/go-hostpool") | ||
| 110 | (synopsis "Pool among multiple hosts from Golang") | ||
| 111 | (description | ||
| 112 | "This package provides a Go package to intelligently and flexibly pool among | ||
| 113 | multiple hosts from your Go application. Host selection can operate in round | ||
| 114 | robin or epsilon greedy mode, and unresponsive hosts are avoided.") | ||
| 115 | (license license:expat))) | ||
| 116 | |||
| 92 | (define-public go-github-com-bitly-timer-metrics | 117 | (define-public go-github-com-bitly-timer-metrics |
| 93 | (package | 118 | (package |
| 94 | (name "go-github-com-bitly-timer-metrics") | 119 | (name "go-github-com-bitly-timer-metrics") |
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 767c22fe5c4..64fcd09a8f1 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm | |||
| @@ -1881,31 +1881,6 @@ lists (Apple XML, Apple Binary, OpenStep, and GNUStep) from/to arbitrary Go | |||
| 1881 | types.") | 1881 | types.") |
| 1882 | (license license:giftware)))) | 1882 | (license license:giftware)))) |
| 1883 | 1883 | ||
| 1884 | (define-public go-github-com-bitly-go-hostpool | ||
| 1885 | (package | ||
| 1886 | (name "go-github-com-bitly-go-hostpool") | ||
| 1887 | (version "0.1.0") | ||
| 1888 | (source (origin | ||
| 1889 | (method git-fetch) | ||
| 1890 | (uri (git-reference | ||
| 1891 | (url "https://github.com/bitly/go-hostpool") | ||
| 1892 | (commit (string-append "v" version)))) | ||
| 1893 | (file-name (git-file-name name version)) | ||
| 1894 | (sha256 | ||
| 1895 | (base32 | ||
| 1896 | "1iibj7dwymczw7cknrh6glc6sdpp4yap2plnyr8qphynwrzlz73w")))) | ||
| 1897 | (build-system go-build-system) | ||
| 1898 | (arguments | ||
| 1899 | '(#:import-path "github.com/bitly/go-hostpool")) | ||
| 1900 | (native-inputs (list go-github-com-stretchr-testify)) | ||
| 1901 | (home-page "https://github.com/bitly/go-hostpool") | ||
| 1902 | (synopsis "Pool among multiple hosts from Golang") | ||
| 1903 | (description | ||
| 1904 | "This package provides a Go package to intelligently and flexibly pool among | ||
| 1905 | multiple hosts from your Go application. Host selection can operate in round | ||
| 1906 | robin or epsilon greedy mode, and unresponsive hosts are avoided.") | ||
| 1907 | (license license:expat))) | ||
| 1908 | |||
| 1909 | (define-public go-github-com-blanu-dust | 1884 | (define-public go-github-com-blanu-dust |
| 1910 | (package | 1885 | (package |
| 1911 | (name "go-github-com-blanu-dust") | 1886 | (name "go-github-com-blanu-dust") |
diff --git a/gnu/packages/high-availability.scm b/gnu/packages/high-availability.scm index 0678edaf4e9..b0e66313890 100644 --- a/gnu/packages/high-availability.scm +++ b/gnu/packages/high-availability.scm | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #:use-module (gnu packages gettext) | 36 | #:use-module (gnu packages gettext) |
| 37 | #:use-module (gnu packages glib) | 37 | #:use-module (gnu packages glib) |
| 38 | #:use-module (gnu packages golang) | 38 | #:use-module (gnu packages golang) |
| 39 | #:use-module (gnu packages golang-build) | ||
| 39 | #:use-module (gnu packages golang-check) | 40 | #:use-module (gnu packages golang-check) |
| 40 | #:use-module (gnu packages golang-compression) | 41 | #:use-module (gnu packages golang-compression) |
| 41 | #:use-module (gnu packages golang-crypto) | 42 | #:use-module (gnu packages golang-crypto) |
