gnu: go-golang-org-x-tools: Update to 0.5.0.

* gnu/packages/golang.scm (go-golang-org-x-tools): Update to 0.5.0.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Katherine Cox-Buday 2023-01-17 18:44:56 -07:00 committed by Christopher Baines
parent 19c81c1517
commit 35fedd1719
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -2883,21 +2883,25 @@ directory) packages.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public go-golang-org-x-tools (define-public go-golang-org-x-tools
(let ((commit "8b927904ee0dec805c89aaf9172f4459296ed6e8")
(revision "0"))
(package (package
(name "go-golang-org-x-tools") (name "go-golang-org-x-tools")
(version (git-version "0.1.3" revision commit)) (version "0.5.0")
(source (origin (source
(origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://go.googlesource.com/tools") (url "https://go.googlesource.com/tools")
(commit commit))) (commit (string-append "v" version))))
(file-name (string-append "go.googlesource.com-tools-" (file-name (git-file-name name version))
version "-checkout"))
(sha256 (sha256
(base32 (base32
"0iinb70xhcjsddgi42ia1n745lx2ibnjdm6m2v666qrk3876vpck")))) "08kx2nndq3sr6xai7403mbsqvz5shxmp2icylfr2fmwagr59cb2n"))
(modules '((guix build utils)))
(snippet
'(begin
;; gopls versions are tagged separately, and it is a
;; separate Guix package.
(delete-file-recursively "gopls")))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
`(#:import-path "golang.org/x/tools" `(#:import-path "golang.org/x/tools"
@ -2907,11 +2911,17 @@ directory) packages.")
(modify-phases %standard-phases (modify-phases %standard-phases
;; Source-only package ;; Source-only package
(delete 'build)))) (delete 'build))))
(propagated-inputs
(list
go-github-com-yuin-goldmark
go-golang-org-x-mod
go-golang-org-x-net
go-golang-org-x-sys))
(synopsis "Tools that support the Go programming language") (synopsis "Tools that support the Go programming language")
(description "This package provides miscellaneous tools that support the (description "This package provides miscellaneous tools that support the
Go programming language.") Go programming language.")
(home-page "https://go.googlesource.com/tools/") (home-page "https://go.googlesource.com/tools/")
(license license:bsd-3)))) (license license:bsd-3)))
(define-public go-golang-org-x-crypto (define-public go-golang-org-x-crypto
(let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a") (let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a")