sharlatan pushed a commit to branch go-team in repository guix. commit dc0d67ae4f82310bbe6d8fbf3e54a794e5dfb103 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed Feb 12 15:21:49 2025 +0000
gnu: Add go-github-com-mattn-go-ieproxy. * gnu/packages/golang-web.scm (go-github-com-mattn-go-ieproxy): New variable. Change-Id: Ie132802cf505a0ee736c92f5e6f0264eecccc827 --- gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 9d9c098ae0..c154c847cb 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -5262,6 +5262,32 @@ supported by HTTP PATCH method, allowing for standards based partial updates via REST APIs.") (license license:asl2.0))) +(define-public go-github-com-mattn-go-ieproxy + (package + (name "go-github-com-mattn-go-ieproxy") + (version "0.0.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-ieproxy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cqfjq106vdm9l9ddb4pps001wxwzabrq2q82f9dimszfq0my8av")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mattn/go-ieproxy")) + (propagated-inputs + (list go-golang-org-x-net + go-golang-org-x-sys)) + (home-page "https://github.com/mattn/go-ieproxy") + (synopsis "Detect the proxy settings from Golang") + (description + "Package ieproxy is a utility to retrieve the proxy parameters.") + (license license:expat))) + (define-public go-github-com-mattn-go-mastodon (package (name "go-github-com-mattn-go-mastodon")