sharlatan pushed a commit to branch go-team in repository guix. commit 54e1c70b6382f1667a1c2019659350a0e820df9d Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed Feb 12 15:07:54 2025 +0000
gnu: Add go-github-com-tomnomnom-linkheader. * gnu/packages/golang-web.scm (go-github-com-tomnomnom-linkheader): New variable. Change-Id: I5809710a04409ea48d4e0b533d3a6b418cef1223 --- gnu/packages/golang-web.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 004e9629c8..da1bec44b8 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -7883,6 +7883,29 @@ runtime. It has zero dependencies, and doesn't rely on CGO. This means you can run applications in other languages and still keep cross compilation.") (license license:asl2.0))) +(define-public go-github-com-tomnomnom-linkheader + (package + (name "go-github-com-tomnomnom-linkheader") + (version "0.0.0-20180905144013-02ca5825eb80") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tomnomnom/linkheader") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ghrv28vrvvrpyr4d4q817yby8g1j04mid8ql00sds1pvfv67d32")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tomnomnom/linkheader")) + (home-page "https://github.com/tomnomnom/linkheader") + (synopsis "Golang HTTP Link header parser") + (description + "Package linkheader provides functions for parsing HTTP Link headers.") + (license license:expat))) + (define-public go-github-com-tv42-httpunix (let ((commit "2ba4b9c3382c77e7b9ea89d00746e6111d142a22") (revision "0"))