diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 09:00:39 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 09:00:39 +0100 |
commit | 8af0ee243c6f6ca743ebc9f050e1b2bf7f56a554 (patch) | |
tree | 31c1ea1c359f3d2ac36ce306783facd06b55ae07 /gnu/packages/golang-xyz.scm | |
parent | 1129b6fe4ab6faf2ae89093d0c8c92f66de5696b (diff) | |
download | guix-8af0ee243c6f6ca743ebc9f050e1b2bf7f56a554.tar.gz guix-8af0ee243c6f6ca743ebc9f050e1b2bf7f56a554.zip |
gnu: Add go-github-com-mattn-go-tty.
* gnu/packages/golang-xyz.scm (go-github-com-mattn-go-tty): New variable.
Change-Id: I08c4508c83aa70b747b71c307b3c9e2862b2588d
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b1df96b87c..ea41dddbcc 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3457,6 +3457,35 @@ the @code{cpan} module @code{Parse::CommandLine}.") @code{database/sql}.") (license license:expat))) +(define-public go-github-com-mattn-go-tty + (package + (name "go-github-com-mattn-go-tty") + (version "0.0.7") + (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 "09ndgwrx99jqaakmhk4v2pnai9h2mvryapc3qg6i33v2x809y6z6")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mattn/go-tty")) + (propagated-inputs + (list go-github-com-mattn-go-colorable + go-github-com-mattn-go-isatty + go-github-com-mattn-go-runewidth + go-golang-org-x-sys)) + (home-page "https://github.com/mattn/go-tty") + (synopsis "Simple TTY utility for Golang") + (description + "This package provides a TTY utilities implementation for verity of +operation systems.") + (license license:expat))) + (define-public go-github-com-mattn-go-zglob (package (name "go-github-com-mattn-go-zglob") |