diff options
author | Tomas Volf <~@wolfsden.cz> | 2025-07-13 00:47:30 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-14 10:53:17 +0100 |
commit | 710f245eea77e14696513f29ae2c097e4d610e4f (patch) | |
tree | 3ddd21fac6bd379ca756c340da37b973db5ada30 | |
parent | b3ba64b57ffc67cae3f6a1eb1c863f3354cfeeb7 (diff) |
gnu: go-honnef-co-go-tools: Update to 0.6.1.
* gnu/packages/golang-check.scm (go-honnef-co-go-tools): Update to 0.6.1.
[arguments]: Use go-1.23.
[propagated-inputs]: Add go-golang-org-x-exp.
Change-Id: I113e77de26f72a8b88052a1d5b687ee0293c406d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/golang-check.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index a62b34c5a2..fc1e186267 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -51,6 +51,7 @@ #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages bash) + #:use-module (gnu packages golang) #:use-module (gnu packages golang-build) #:use-module (gnu packages golang-xyz) #:use-module (gnu packages version-control)) @@ -2754,7 +2755,7 @@ used to skip the test (define-public go-honnef-co-go-tools (package (name "go-honnef-co-go-tools") - (version "0.4.7") + (version "0.6.1") (source (origin (method git-fetch) @@ -2764,10 +2765,11 @@ used to skip the test (file-name (git-file-name name version)) (sha256 (base32 - "1n58skq2a0vhsgdfdkyqi00d3vv13kiw9b4mxx6xfyb6ysrdy7d1")))) + "0y4xbb91mv1rj7aps5g7hz1mhf5pbdc8yp5bxz6dq5ajlmfqwi3s")))) (build-system go-build-system) (arguments (list + #:go go-1.23 #:import-path "honnef.co/go/tools" #:phases #~(modify-phases %standard-phases @@ -2780,6 +2782,7 @@ used to skip the test (invoke "go" "test" "-v" "./...")))))))) (propagated-inputs (list go-github-com-burntsushi-toml + go-golang-org-x-exp go-golang-org-x-exp-typeparams go-golang-org-x-mod go-golang-org-x-tools)) |