mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 09:58:57 -05:00
gnu: go-golang-org-x-net: Fix indentation.
* gnu/packages/golang-build.scm (go-golang-org-x-net): Fix indentation. Change-Id: Ie36547fa6163617bc7026321ade335185341d678
This commit is contained in:
parent
a7c7d86d42
commit
8aa11899bd
1 changed files with 29 additions and 28 deletions
|
@ -291,34 +291,35 @@ (define-public go-golang-org-x-mod
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-net
|
(define-public go-golang-org-x-net
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-net")
|
(name "go-golang-org-x-net")
|
||||||
(version "0.27.0")
|
(version "0.27.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://go.googlesource.com/net")
|
(url "https://go.googlesource.com/net")
|
||||||
(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 "0fc6d968yiv2l67z9jg7ssvas1hd1jniqh4m7mmlay0q5gk4vf8s"))))
|
(base32 "0fc6d968yiv2l67z9jg7ssvas1hd1jniqh4m7mmlay0q5gk4vf8s"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:import-path "golang.org/x/net"
|
#:import-path "golang.org/x/net"
|
||||||
;; Source-only package
|
;; Source-only package
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
;; Source-only package
|
;; Source-only package
|
||||||
(delete 'build))))
|
(delete 'build))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-golang-org-x-sys go-golang-org-x-term go-golang-org-x-text))
|
(list go-golang-org-x-sys go-golang-org-x-term go-golang-org-x-text))
|
||||||
(home-page "https://go.googlesource.com/net")
|
(home-page "https://go.googlesource.com/net")
|
||||||
(synopsis "Go supplemental networking libraries")
|
(synopsis "Go supplemental networking libraries")
|
||||||
(description "This package provides supplemental Go networking libraries.")
|
(description
|
||||||
(license license:bsd-3)))
|
"This package provides supplemental Go networking libraries.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-sync
|
(define-public go-golang-org-x-sync
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue