From 013b046fca48202f19208a9fe0ae608f02b60953 Mon Sep 17 00:00:00 2001 From: gemmaro Date: Fri, 30 Aug 2024 00:14:08 +0900 Subject: [PATCH] gnu: Add go-jfmt. * gnu/packages/golang-xyz.scm (go-jfmt): New variable. Change-Id: I73a979407e2497a8b8a4a50d1efae04a269c2822 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index ba6adaeaf4..942c5f5138 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -7564,6 +7564,16 @@ tool.")) Trace/Debug/Info/Warn/Error methods on @code{hclog.Logger} are used correctly."))) +(define-public go-jfmt + (package/inherit go-zgo-at-jfmt + (name "go-jfmt") + (arguments (list #:install-source? #f + #:import-path "zgo.at/jfmt/cmd/jfmt" + #:unpack-path "zgo.at/jfmt")) + (description + (string-append (package-description go-zgo-at-jfmt) + " This package provides a command line interface (CLI) tool.")))) + (define-public go-msgio (package (inherit go-github-com-libp2p-go-msgio)