diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2026-02-08 20:10:18 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-28 22:05:08 +0000 |
| commit | 9b838e9b64b3f5b8b39b0a4c17f52db8289403f7 (patch) | |
| tree | 9856d71df32826fe109bb42a33846d4718e1b879 /gnu | |
| parent | ce7333223de09f823b1031237c58cb2582064d6c (diff) | |
gnu: Add go-gitlab-com-gitlab-org-api-client-go-0.116.
* gnu/packages/golang-web.scm (go-gitlab-com-gitlab-org-api-client-go-0.116):
New variable.
Change-Id: I5b3ea56b6dbdec91c141d96ffb561206dbe92503
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index a32925c11bd..dc9ab18a0ad 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -16007,6 +16007,31 @@ https://openid.net/developers/how-connect-works/}.") interact with GitLab in a simple and uniform way.") (license license:asl2.0))) +;; git-bug fails to build with the latest +;; go-gitlab-com-gitlab-org-api-client-go. So, we package this version. See +;; the git-bug package for details. +(define-public go-gitlab-com-gitlab-org-api-client-go-0.116 + (hidden-package + (package + (inherit go-gitlab-com-gitlab-org-api-client-go) + (name "go-gitlab-com-gitlab-org-api-client-go") + (version "0.116.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/gitlab-org/api/client-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cajw57mcsgf0b8xk8z0bgfqsmz7wp7dwzwyapvdxn8a9kqzx59r")))) + (arguments + (substitute-keyword-arguments + (package-arguments go-gitlab-com-gitlab-org-api-client-go) + ((#:phases phases #~%standard-phases) + #~(modify-phases #$phases + (delete 'remove-examples)))))))) + (define-public go-gitlab-torproject-org-tpo-anti-censorship-geoip (package (name "go-gitlab-torproject-org-tpo-anti-censorship-geoip") |
