diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2023-06-18 12:43:10 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-06-21 00:10:50 +0200 |
commit | da4305e9b3d65cf698a6987bd7be7905785bf06c (patch) | |
tree | 10ffa3ba8972dc56820bf681d765f3d6215f1bf9 /gnu/packages/textutils.scm | |
parent | d67c85324dedcc33a56b146c8a51b5eec83aafe9 (diff) |
gnu: go-github-com-mattn-go-runewidth: Update to 0.0.14.
* gnu/packages/golang.scm (go-github-com-mattn-go-runewidth): Update to 0.0.14.
(go-github.com-mattn-go-runewidth): Remove, and change users to to refer
to 'go-github-com-mattn-go-runewidth'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index ba33cf7de7..51df3748cd 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1008,34 +1008,6 @@ and Cython.") markup and converts it to multiple formats.") (license license:gpl2))) -(define-public go-github.com-mattn-go-runewidth - (let ((commit "703b5e6b11ae25aeb2af9ebb5d5fdf8fa2575211") - (version "0.0.4") - (revision "1")) - (package - (name "go-github.com-mattn-go-runewidth") - (version (git-version version revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mattn/runewidth") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0znpyz71gajx3g0j2zp63nhjj2c07g16885vxv4ykwnrfmzbgk4w")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/mattn/go-runewidth")) - (synopsis "@code{runewidth} provides Go functions to work with string widths") - (description - "The @code{runewidth} library provides Go functions for padding, -measuring and checking the width of strings, with support for East Asian -text.") - (home-page "https://github.com/mattn/runewidth") - (license license:expat)))) - (define-public docx2txt (package (name "docx2txt") |