sharlatan pushed a commit to branch go-team in repository guix. commit b34a18a71f07c36bfeb57338286a6a9ade6d5f18 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Tue Feb 18 09:08:30 2025 +0000
gnu: Add go-github-com-sacloud-go-http. * gnu/packages/golang-web.scm (go-github-com-sacloud-go-http): New variable. Change-Id: I96e04ad09fa755baff33edbbff3e5d40d466fcfc --- gnu/packages/golang-web.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index ee770a5772..dc77db823b 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -7590,6 +7590,36 @@ per host/process @end itemize") (license license:expat))) +(define-public go-github-com-sacloud-go-http + (package + (name "go-github-com-sacloud-go-http") + (version "0.1.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sacloud/go-http") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c7anxj00sam5q06jlqhi1z39p19p7nffd5q07j78pahcskgvpim")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/sacloud/go-http")) + (native-inputs + (list go-github-com-stretchr-testify)) + (propagated-inputs + (list go-github-com-hashicorp-go-retryablehttp + go-go-uber-org-ratelimit)) + (home-page "https://github.com/sacloud/go-http") + (synopsis "HTTP client library for SAKURA cloud in Go") + (description + "This package provides a HTTP client functionality that can be used +across various @url{https://www.sakura.ad.jp/, Sakura Cloud} APIs (IaaS, +ObjectStorage, PHY, etc.).") + (license license:asl2.0))) + (define-public go-github-com-safchain-ethtool (package (name "go-github-com-safchain-ethtool")