diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-24 23:51:07 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 00:02:37 +0100 |
commit | b585cc6b699006a03f7b3125484d8ad66810fddd (patch) | |
tree | c96be6ce1c69ce1e3d05dda9bdbf11e1520f4c48 | |
parent | 90880a7d653f2c197166d1defe610f41ad3cbd71 (diff) |
gnu: Remove go-keyify.
go-honnef-co-go-tools@0.6.1 does not provide <cmd/keyify> which was
removed in v0.5.0.
See: <https://github.com/dominikh/go-tools/releases/tag/2024.1>.
* gnu/packages/golang-check.scm (go-keyify): Delete variable.
Change-Id: I4e4b8cd8611dfd70f6dce3b6815e0ef057191f33
-rw-r--r-- | gnu/packages/golang-check.scm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index bf98c114a5..cd1f382020 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -2967,18 +2967,6 @@ thoroughly " This package provides an command line interface (CLI) tool.")))) -(define-public go-keyify - (package - (inherit go-honnef-co-go-tools) - (name "go-keyify") - (arguments - `(#:import-path "honnef.co/go/tools/cmd/keyify" - #:unpack-path "honnef.co/go/tools" - #:install-source? #f)) - (synopsis "Transform an unkeyed struct literal into a keyed one in Go") - (description "This package turns unkeyed struct literals (@code{T{1, 2, -3}}) into keyed ones (@code{T{A: 1, B: 2, C: 3}}) in Go."))) - (define-public go-pgmockproxy (package (inherit go-github-com-jackc-pgmock) |