guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 17439f4449c7f260ac233c76a98714c6228d9a79
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue Sep 15 18:25:18 2026 +0200
gnu: Add go-github-com-mattn-go-tty-v2.
* gnu/packages/golang-xyz.scm (go-github-com-mattn-go-tty-v2): New variable.
Relates-to: guix/guix!11226, guix/guix!11258
Reviewed-by: Orahcio FelĂcio de Sousa <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 46508be0a5e..40669a8b9b0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -22277,6 +22277,25 @@ the @code{cpan} module @code{Parse::CommandLine}.")
operation systems.")
(license license:expat)))
+(define-public go-github-com-mattn-go-tty-v2
+ (package
+ (inherit go-github-com-mattn-go-tty)
+ (name "go-github-com-mattn-go-tty-v2")
+ (version "2.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mattn/go-tty")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19apbjjni5a3rfiddsz34kk9l17kr36s4kcfn10ikk805bv8r297"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/mattn/go-tty/v2"))))
+
(define-public go-github-com-mattn-go-zglob
(package
(name "go-github-com-mattn-go-zglob")