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:
Sharlatan Hellseher 2024-07-12 13:36:51 +01:00
parent a7c7d86d42
commit 8aa11899bd
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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