summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-12-28 16:06:28 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:42:33 +0000
commitef44b838fb46af208b2904171b8ece57a45a8745 (patch)
tree2065486087308ef91d59447e480c8514c51abb0c /gnu/packages/golang-xyz.scm
parentf4abc9e310f70f4c961e5800f0b3a9c5d1e7c36c (diff)
gnu: go-github-com-mitchellh-go-wordwrap: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mitchellh-go-wordwrap): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ie558bdc39a725dd69a033078bdf91426ba4245e0
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r--gnu/packages/golang-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fab1c382cd..60759a71a9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8270,6 +8270,33 @@ the current user without cgo. This library does that, enabling
cross-compilation.")
(license license:expat)))
+(define-public go-github-com-mitchellh-go-wordwrap
+ (package
+ (name "go-github-com-mitchellh-go-wordwrap")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mitchellh/go-wordwrap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12imq66hgj8q9ii2xqdy8apc0icphh6yimjb0div1pvl3s9gn83y"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/mitchellh/go-wordwrap"))
+ (propagated-inputs
+ (list go-gopkg-in-yaml-v2))
+ (home-page "https://github.com/mitchellh/go-wordwrap")
+ (synopsis "Go library for word-wrapping strings")
+ (description
+ "This Go library automatically wraps words onto multiple lines. It's
+primary goal is to format command-line output, but of course word wrapping is
+a generally useful thing to do.")
+ (license license:expat)))
+
;; XXX: This package is in maintenance mode: "This repository has been
;; archived by the owner on Jul 22, 2024. It is now read-only."
(define-public go-github-com-mitchellh-mapstructure