diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-24 16:17:45 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-25 21:01:01 +0100 |
commit | 19b22408e694ac9de48d42b16cc4d115b736a77f (patch) | |
tree | c73984b1ae96262288ba4fc90077b464bf0b2d49 /gnu/packages/golang-xyz.scm | |
parent | 9b8d1003c1fa73a5e33cc0d6eb2babc82af29970 (diff) | |
download | guix-19b22408e694ac9de48d42b16cc4d115b736a77f.tar.gz guix-19b22408e694ac9de48d42b16cc4d115b736a77f.zip |
gnu: go-github-com-jpillora-backoff: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-jpillora-backoff): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I3e5a6018118bf2717ad5d364579e2c960da68415
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index f007542b8a..171ad06462 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2765,6 +2765,32 @@ storing only one copy of each unique string in memory. All functions may be called concurrently with themselves and each other.") (license license:expat))) +(define-public go-github-com-jpillora-backoff + (let ((commit + "06c7a16c845dc8e0bf575fafeeca0f5462f5eb4d") + (revision "0")) + (package + (name "go-github-com-jpillora-backoff") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpillora/backoff") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0xhvxr7bm47czdc5hy3kl508z3y4j91i2jm7vg774i52zych6k4l")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/jpillora/backoff")) + (home-page "https://github.com/jpillora/backoff") + (synopsis "Simple exponential backoff counter in Go") + (description + "This package is a simple exponential backoff counter in Go.") + (license license:expat)))) + (define-public go-github-com-k0kubun-go-ansi (package (name "go-github-com-k0kubun-go-ansi") |