gnu: go-golang-org-x-time: Fix indentation.
* gnu/packages/golang-build.scm (go-golang-org-x-time): Fix indentation. Change-Id: I144f91a9acde9605a067f61f09606f313f9b21c2
This commit is contained in:
parent
addabe9736
commit
b8aab45d78
1 changed files with 25 additions and 24 deletions
|
@ -533,32 +533,33 @@ processing.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-time
|
(define-public go-golang-org-x-time
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-time")
|
(name "go-golang-org-x-time")
|
||||||
(version "0.5.0")
|
(version "0.5.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://go.googlesource.com/time")
|
(url "https://go.googlesource.com/time")
|
||||||
(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 "1dahq0p6zn2pd408q6hsv1jl12nqrwd1gkl3r3dysk2q0z16192v"))))
|
(base32 "1dahq0p6zn2pd408q6hsv1jl12nqrwd1gkl3r3dysk2q0z16192v"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "golang.org/x/time"
|
`(#:import-path "golang.org/x/time"
|
||||||
|
;; Source-only package
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
;; Source-only package
|
;; Source-only package
|
||||||
#:tests? #f
|
(delete 'build))))
|
||||||
#:phases
|
(home-page "https://godoc.org/golang.org/x/time/rate")
|
||||||
(modify-phases %standard-phases
|
(synopsis "Supplemental Go time libraries")
|
||||||
;; Source-only package
|
(description
|
||||||
(delete 'build))))
|
"This package provides supplemental Go libraries related to
|
||||||
(home-page "https://godoc.org/golang.org/x/time/rate")
|
|
||||||
(synopsis "Supplemental Go time libraries")
|
|
||||||
(description "This package provides supplemental Go libraries related to
|
|
||||||
time.")
|
time.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-tools
|
(define-public go-golang-org-x-tools
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue