mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-golang-org-x-oauth2: Move to golang-web.
* gnu/packages/golang.scm (go-golang-org-x-oauth2): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I60fd46f5c373ccdb00c78c978a840acfe9f489b1
This commit is contained in:
parent
162f716d74
commit
04af4f6646
2 changed files with 28 additions and 28 deletions
|
@ -3,9 +3,9 @@
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
||||||
|
;;; Copyright © 2019, 2020 Martin Becze <mjbecze@riseup.net>
|
||||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
|
@ -3224,6 +3224,33 @@ programming language.")
|
||||||
programming language, which supports draft-04, draft-06 and draft-07.")
|
programming language, which supports draft-04, draft-06 and draft-07.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public go-golang-org-x-oauth2
|
||||||
|
(package
|
||||||
|
(name "go-golang-org-x-oauth2")
|
||||||
|
(version "0.21.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://go.googlesource.com/oauth2")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0pzpa9jqrfxxhxi1w7n5ljnvr9qfw42hzavz62fc9i6z9vk2466k"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "golang.org/x/oauth2"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-cloud-google-com-go-compute-metadata
|
||||||
|
go-github-com-google-go-cmp))
|
||||||
|
(home-page "https://go.googlesource.com/oauth2")
|
||||||
|
(synopsis "Client implementation of the OAuth 2.0 spec")
|
||||||
|
(description
|
||||||
|
"This package contains a client implementation for OAuth 2.0
|
||||||
|
spec in Go.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
;; XXX: This repository has been archived by the owner on Feb 27, 2023. It is
|
;; XXX: This repository has been archived by the owner on Feb 27, 2023. It is
|
||||||
;; now read-only and it is DEPRECATED.
|
;; now read-only and it is DEPRECATED.
|
||||||
(define-public go-gopkg-in-square-go-jose-v2
|
(define-public go-gopkg-in-square-go-jose-v2
|
||||||
|
|
|
@ -3262,33 +3262,6 @@ developed by the Go team. It provides IDE features to any LSP-compatible
|
||||||
editor.")
|
editor.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-oauth2
|
|
||||||
(package
|
|
||||||
(name "go-golang-org-x-oauth2")
|
|
||||||
(version "0.21.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://go.googlesource.com/oauth2")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0pzpa9jqrfxxhxi1w7n5ljnvr9qfw42hzavz62fc9i6z9vk2466k"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "golang.org/x/oauth2"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-cloud-google-com-go-compute-metadata
|
|
||||||
go-github-com-google-go-cmp-cmp))
|
|
||||||
(home-page "https://go.googlesource.com/oauth2")
|
|
||||||
(synopsis "Client implementation of the OAuth 2.0 spec")
|
|
||||||
(description
|
|
||||||
"This package contains a client implementation for OAuth 2.0
|
|
||||||
spec in Go.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-jpillora-backoff
|
(define-public go-github-com-jpillora-backoff
|
||||||
(let ((commit
|
(let ((commit
|
||||||
"06c7a16c845dc8e0bf575fafeeca0f5462f5eb4d")
|
"06c7a16c845dc8e0bf575fafeeca0f5462f5eb4d")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue