[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60909] [PATCH 11/25] gnu: go-golang-org-x-tools: Update to 0.5.0.
From: |
Katherine Cox-Buday |
Subject: |
[bug#60909] [PATCH 11/25] gnu: go-golang-org-x-tools: Update to 0.5.0. |
Date: |
Tue, 17 Jan 2023 18:44:56 -0700 |
* gnu/packages/golang.scm (go-golang-org-x-tools): Update to 0.5.0.
---
gnu/packages/golang.scm | 64 ++++++++++++++++++++++++-----------------
1 file changed, 37 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4cef0f61f6..aa5f5ba159 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2883,35 +2883,45 @@ (define-public go-golang-org-x-exp
(license license:bsd-3)))
(define-public go-golang-org-x-tools
- (let ((commit "8b927904ee0dec805c89aaf9172f4459296ed6e8")
- (revision "0"))
- (package
- (name "go-golang-org-x-tools")
- (version (git-version "0.1.3" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://go.googlesource.com/tools")
- (commit commit)))
- (file-name (string-append "go.googlesource.com-tools-"
- version "-checkout"))
- (sha256
- (base32
- "0iinb70xhcjsddgi42ia1n745lx2ibnjdm6m2v666qrk3876vpck"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "golang.org/x/tools"
+ (package
+ (name "go-golang-org-x-tools")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://go.googlesource.com/tools")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "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)
+ (arguments
+ `(#:import-path "golang.org/x/tools"
+ ;; Source-only package
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
;; Source-only package
- #:tests? #f
- #:phases
- (modify-phases %standard-phases
- ;; Source-only package
- (delete 'build))))
- (synopsis "Tools that support the Go programming language")
- (description "This package provides miscellaneous tools that support the
+ (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")
+ (description "This package provides miscellaneous tools that support the
Go programming language.")
- (home-page "https://go.googlesource.com/tools/")
- (license license:bsd-3))))
+ (home-page "https://go.googlesource.com/tools/")
+ (license license:bsd-3)))
(define-public go-golang-org-x-crypto
(let ((commit "2aa609cf4a9d7d1126360de73b55b6002f9e052a")
--
2.38.1
- [bug#60899] [PATCH 00/25] gnu: golang: Add gopls, Katherine Cox-Buday, 2023/01/17
- [bug#60905] [PATCH 08/25] gnu: go-github-com-pkg-diff: Update to 0.0.0-20210226163009-20ebb0f2a09e., Katherine Cox-Buday, 2023/01/17
- [bug#60904] [PATCH 05/25] gnu: Add go-github-com-google-safehtml., Katherine Cox-Buday, 2023/01/17
- [bug#60898] [PATCH 02/25] gnu: go-golang-org-x-mod: Update to 0.7.0., Katherine Cox-Buday, 2023/01/17
- [bug#60909] [PATCH 11/25] gnu: go-golang-org-x-tools: Update to 0.5.0.,
Katherine Cox-Buday <=
- [bug#60901] [PATCH 03/25] gnu: Add go-golang-org-x-exp., Katherine Cox-Buday, 2023/01/17
- [bug#60906] [PATCH 09/25] gnu: go-github-com-rogpeppe-go-internal: Update to 1.9.0., Katherine Cox-Buday, 2023/01/17
- [bug#60913] [PATCH 16/25] gnu: Add go-github-com-google-go-cmdtest., Katherine Cox-Buday, 2023/01/17
- [bug#60914] [PATCH 15/25] gnu: Add go-github-com-client9-misspell., Katherine Cox-Buday, 2023/01/17
- [bug#60915] [PATCH 18/25] gnu: Add go-mvdan-cc-unparam., Katherine Cox-Buday, 2023/01/17
- [bug#60921] [PATCH 24/25] gnu: Add go-mvdan-cc-gofumpt., Katherine Cox-Buday, 2023/01/17
- [bug#60900] [PATCH 04/25] gnu: Add go-github-com-jba-printsrc., Katherine Cox-Buday, 2023/01/17
- [bug#60902] [PATCH 06/25] gnu: Add go-github-com-jba-templatecheck., Katherine Cox-Buday, 2023/01/17
- [bug#60910] [PATCH 12/25] gnu: Add xurls., Katherine Cox-Buday, 2023/01/17
- [bug#60918] [PATCH 19/25] gnu: Add govulncheck., Katherine Cox-Buday, 2023/01/17