1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

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
This commit is contained in:
Sharlatan Hellseher 2024-12-28 16:06:28 +00:00
parent f4abc9e310
commit ef44b838fb
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 27 additions and 26 deletions

View file

@ -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

View file

@ -2167,32 +2167,6 @@ your Go binary to be later served from an http.FileSystem.")
(description "This package provides additions to Go's stdlib @code{fmt}.")
(license license:bsd-3)))
(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
'(#: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)))
(define-public go-github-com-motemen-go-colorine
(let ((commit "45d19169413a019e4e2be69629dde5c7d92f8706")
(revision "0"))