gnu: Add go-github-com-cenkalti-hub.

* gnu/packages/golang-web.scm (go-github-com-cenkalti-hub): New variable.

Change-Id: I9954247ed71f833e44d6e34ff02107d6d04f296b
This commit is contained in:
Sharlatan Hellseher 2025-07-07 15:18:45 +01:00
parent 228827d06e
commit c00c1c9032
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1505,6 +1505,30 @@ process, in order to gradually find an acceptable rate. The retries
exponentially increase and stop increasing when a certain threshold is met.")
(license license:expat)))
(define-public go-github-com-cenkalti-hub
(package
(name "go-github-com-cenkalti-hub")
(version "1.0.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cenkalti/hub")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "14irdpqh36vyzfxwcv6gv0fl3ak1djzsvg93kr9a24a2qvc2wwj6"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/cenkalti/hub"))
(home-page "https://github.com/cenkalti/hub")
(synopsis "Publish/Subscribe library in Golang")
(description
"Package hub provides a simple event dispatcher for publish/subscribe
pattern.")
(license license:expat)))
(define-public go-github-com-chris-ramon-douceur
(package
(name "go-github-com-chris-ramon-douceur")