mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 11:54:33 -05:00
gnu: go-golang-org-x-oauth2: Improve package style.
* gnu/packages/golang.scm (go-golang-org-x-oauth2): Fix indentation, apply new package style. Change-Id: I36e7a9d159928b5ef5d83fec9d57b005cc2c5ad4
This commit is contained in:
parent
96d3f5240b
commit
162f716d74
1 changed files with 24 additions and 22 deletions
|
@ -3266,24 +3266,26 @@ (define-public go-golang-org-x-oauth2
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-oauth2")
|
(name "go-golang-org-x-oauth2")
|
||||||
(version "0.21.0")
|
(version "0.21.0")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://go.googlesource.com/oauth2")
|
(url "https://go.googlesource.com/oauth2")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0pzpa9jqrfxxhxi1w7n5ljnvr9qfw42hzavz62fc9i6z9vk2466k"))))
|
||||||
"0pzpa9jqrfxxhxi1w7n5ljnvr9qfw42hzavz62fc9i6z9vk2466k"))))
|
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "golang.org/x/oauth2"))
|
(list
|
||||||
|
#:import-path "golang.org/x/oauth2"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-cloud-google-com-go-compute-metadata
|
(list go-cloud-google-com-go-compute-metadata
|
||||||
go-github-com-google-go-cmp-cmp))
|
go-github-com-google-go-cmp-cmp))
|
||||||
(home-page "https://go.googlesource.com/oauth2")
|
(home-page "https://go.googlesource.com/oauth2")
|
||||||
(synopsis "Client implementation of the OAuth 2.0 spec")
|
(synopsis "Client implementation of the OAuth 2.0 spec")
|
||||||
(description "This package contains a client implementation for OAuth 2.0
|
(description
|
||||||
|
"This package contains a client implementation for OAuth 2.0
|
||||||
spec in Go.")
|
spec in Go.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue