diff options
author | Dhruvin Gandhi <contact@dhruvin.dev> | 2022-06-23 15:08:05 +0530 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-08 00:10:30 -0400 |
commit | f0902bd2c0d0dc07197ce202f8a20bfeba91b07a (patch) | |
tree | 1b4c7fa89bf78e17de6c0674f69d41cb7a38b620 | |
parent | ddc59a63b74d31fe2e00aeaba1b2fb7dbd4d3be3 (diff) | |
download | guix-f0902bd2c0d0dc07197ce202f8a20bfeba91b07a.tar.gz |
gnu: Add go-git-sr-ht-emersion-gqlclient.
* gnu/packages/golang.scm (go-git-sr-ht-emersion-gqlclient): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/golang.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index aaad76d7ea..cde002b727 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9985,6 +9985,27 @@ kubernetes-sigs/yaml is a permanent fork of (description "Package go-scfg parses scfg files.") (license license:expat))) +(define-public go-git-sr-ht-emersion-gqlclient + (package + (name "go-git-sr-ht-emersion-gqlclient") + (version "0.0.0-20220202181617-4e6e9c763dd2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~emersion/gqlclient") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d9hmaz7yy02bk455gmaav818xi49sw69jyx6dxzymv6ln7r1cv1")))) + (build-system go-build-system) + (arguments (list #:import-path "git.sr.ht/~emersion/gqlclient")) + (home-page "https://git.sr.ht/~emersion/gqlclient") + (synopsis "GraphQL client and code generator") + (description + "This package provides a GraphQL client and code generator for Go.") + (license license:expat))) + (define-public go-github-com-google-go-jsonnet (package (name "go-github-com-google-go-jsonnet") |