mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add go-github-com-levigross-grequests.
* gnu/packages/golang-web.scm (go-github-com-levigross-grequests): New variable. Change-Id: I0ada84dde4199f6ad395ab593da3a033e049ef80
This commit is contained in:
parent
e08981e3de
commit
f59b0d007a
1 changed files with 29 additions and 0 deletions
|
@ -3914,6 +3914,35 @@ (define-public go-github-com-koron-go-ssdp
|
|||
@acronym{Simple Service Discovery Protocol, SSDP}} library for Golang.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-levigross-grequests
|
||||
(package
|
||||
(name "go-github-com-levigross-grequests")
|
||||
(version "0.0.0-20231203190023-9c307ef1f48d")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/levigross/grequests")
|
||||
(commit (go-version->git-ref version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "13r24vrcgfkps8r09crjlhsywpxs8bnnmlgn5qhbhqiqag754xdc"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ; most of them need network access
|
||||
#:embed-files #~(list "children" "nodes" "text")
|
||||
#:import-path "github.com/levigross/grequests"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-google-go-querystring
|
||||
go-golang-org-x-net))
|
||||
(home-page "https://github.com/levigross/grequests")
|
||||
(synopsis "Requests library for Golang")
|
||||
(description
|
||||
"Package grequests implements a friendly API over Go's existing
|
||||
@code{net/http} library.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-libdns-libdns
|
||||
(package
|
||||
(name "go-github-com-libdns-libdns")
|
||||
|
|
Loading…
Reference in a new issue