[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add go-github-com-mitchellh-go-wordwrap.
From: |
guix-commits |
Subject: |
01/06: gnu: Add go-github-com-mitchellh-go-wordwrap. |
Date: |
Sat, 3 Jul 2021 09:06:53 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 8dc33b00dbd27cc0dfb8ab2ec253e323948bf7df
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Jul 3 06:08:22 2021 +0200
gnu: Add go-github-com-mitchellh-go-wordwrap.
* gnu/packages/golang.scm (go-github-com-mitchellh-go-wordwrap): New public
variable.
---
gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index aedb5d4..8247b09 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -673,6 +673,32 @@ jar struct to manage the cookies added to the cookie jar.")
(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
+ `(("go-gopkg-in-yaml-v2" ,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"))
- branch master updated (3f0a003 -> cb51663), guix-commits, 2021/07/03
- 01/06: gnu: Add go-github-com-mitchellh-go-wordwrap.,
guix-commits <=
- 04/06: gnu: Add ghc-word-wrap., guix-commits, 2021/07/03
- 02/06: gnu: Add go-github-com-gizak-termui., guix-commits, 2021/07/03
- 05/06: gnu: ausweisapp2: Fix WRAP-QT-PROGRAM call., guix-commits, 2021/07/03
- 03/06: gnu: Add gotypist., guix-commits, 2021/07/03
- 06/06: gnu: keepassxc: Fix WRAP-QT-PROGRAM call., guix-commits, 2021/07/03