diff options
author | Troy Figiel <troy@troyfigiel.com> | 2024-02-02 20:17:23 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-05 22:34:47 +0000 |
commit | 3ce5778adb128782351062d99dbfab8ec06c6467 (patch) | |
tree | 6a126c159487c4b69218a503df6efbef1daed07a /gnu/packages | |
parent | 857507117d293e8c8603128b9cd53467be5cce7b (diff) | |
download | guix-3ce5778adb128782351062d99dbfab8ec06c6467.tar guix-3ce5778adb128782351062d99dbfab8ec06c6467.tar.gz |
gnu: go-github-com-kr-text: Update to 0.2.0.
* gnu/packages/golang.scm (go-github-com-kr-text): Update to 0.2.0.
[propagated-inputs]: Add go-github-com-creack-pty.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 16074ae0fa..57e81d44a7 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -43,6 +43,7 @@ ;;; Copyright © 2023 Timo Wilken <guix@twilken.net> ;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org> +;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -6334,7 +6335,7 @@ representation suitable for computing diffs.") (define-public go-github-com-kr-text (package (name "go-github-com-kr-text") - (version "0.1.0") + (version "0.2.0") (source (origin (method git-fetch) (uri (git-reference @@ -6343,10 +6344,11 @@ representation suitable for computing diffs.") (file-name (git-file-name name version)) (sha256 (base32 - "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1")))) + "0hf58ypz6rxsw6nx3i856whir9lvy4sdx946wbw1nfaf2rdmr9vx")))) (build-system go-build-system) (arguments '(#:import-path "github.com/kr/text")) + (propagated-inputs (list go-github-com-creack-pty)) (synopsis "Text formatting in Go") (description "This package provides a text formatting functions in Go.") (home-page "https://github.com/kr/text") |