From 2f2d3f9b6ab0400348eba2597f574fd7168ede73 Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Sun, 11 Jan 2026 11:36:30 +0100 Subject: [PATCH] gnu: Add go-github-com-cli-shurcool-graphql. * gnu/packages/golang-vcs.scm (go-github-com-cli-shurcool-graphql): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5190 Change-Id: I89d1852021fe5c3dcde76f98eaf81e966c484ce0 Reviewed-by: Johannes Christ Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-vcs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm index bab4fbd2535..b4b8ce8fa07 100644 --- a/gnu/packages/golang-vcs.scm +++ b/gnu/packages/golang-vcs.scm @@ -295,6 +295,30 @@ using the Git pkt-line format used in various Git operations.") (replace "go-github-com-go-git-gcfg" go-github-com-go-git-gcfg-v2)))))) +(define-public go-github-com-cli-shurcool-graphql + (package + (name "go-github-com-cli-shurcool-graphql") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cli/shurcooL-graphql") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w5ixfr4ia35n8adadr2rsca3f04bq36fxkgh27fw7rd0mxf199l")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/cli/shurcooL-graphql")) + (home-page "https://github.com/cli/shurcooL-graphql") + (synopsis "GraphQL client implementation for GitHub CLI") + (description + "This package provides a GraphQL client implementation forked from +@code{shurcooL/graphql}, customized for use in the GitHub CLI.") + (license license:expat))) + (define-public go-github-com-jiangxin-goconfig (package (name "go-github-com-jiangxin-goconfig")