sharlatan pushed a commit to branch go-team
in repository guix.
commit 02e14b7f28e062c2820f57dbf74efcccb1674bf5
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 3 14:14:52 2024 +0100
gnu: Add go-github-com-shurcool-githubv4.
* gnu/packages/golang-web.scm (go-github-com-shurcool-githubv4): New
variable.
Signed-off-by: Sharlatan Hellseher <[email protected]>
Change-Id: I2870863792172db990e0f9a58a8e7dc13224bf16
---
gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 8671ffcdbf..53ec762909 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5560,6 +5560,33 @@ per host/process
support.")
(license license:expat)))
+(define-public go-github-com-shurcool-githubv4
+ (package
+ (name "go-github-com-shurcool-githubv4")
+ (version "0.0.0-20240429030203-be2daab69064")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/shurcooL/githubv4")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0kkvqwv0waa8hj1jr9b4nvz8rmslqpchidl7gs9bplrkl3fvsxn6"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/shurcooL/githubv4"))
+ (propagated-inputs
+ (list go-github-com-shurcool-graphql
+ go-golang-org-x-oauth2))
+ (home-page "https://github.com/shurcooL/githubv4")
+ (synopsis "Client library for GitHub GraphQL API v4")
+ (description
+ "Package githubv4 is a client library for accessing GitHub @code{GraphQL}
+API v4.")
+ (license license:expat)))
+
(define-public go-github-com-shurcool-graphql
(package
(name "go-github-com-shurcool-graphql")