mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: go-github-com-muesli-termenv: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-muesli-termenv): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Iba509c25f56581aeb34508ad0db98fe85a24d135
This commit is contained in:
parent
e4391ff7e5
commit
ed907c7a29
2 changed files with 34 additions and 31 deletions
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
|
;;; Copyright © 2021 Guix Together <jgart@dismail.de>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
|
@ -4481,6 +4482,39 @@ (define-public go-github-com-muesli-cancelreader
|
||||||
"This package provides a cancelable reader for Go.")
|
"This package provides a cancelable reader for Go.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-muesli-termenv
|
||||||
|
(package
|
||||||
|
(name "go-github-com-muesli-termenv")
|
||||||
|
(version "0.15.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/muesli/termenv")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "19yhli6k79aqpra4djp0cl4q76mqxbc1f7in20y0dzhnjb7yz42p"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/muesli/termenv"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-aymanbagabas-go-osc52-v2
|
||||||
|
go-github-com-lucasb-eyer-go-colorful
|
||||||
|
go-github-com-mattn-go-isatty
|
||||||
|
go-github-com-mattn-go-runewidth
|
||||||
|
go-golang-org-x-sys))
|
||||||
|
(home-page "https://github.com/muesli/termenv/")
|
||||||
|
(synopsis "Advanced styling options on the terminal")
|
||||||
|
(description
|
||||||
|
"termenv lets you safely use advanced styling options on the terminal.
|
||||||
|
It gathers information about the terminal environment in terms of its ANSI and
|
||||||
|
color support and offers you convenient methods to colorize and style your
|
||||||
|
output, without you having to deal with all kinds of weird ANSI escape
|
||||||
|
sequences and color conversions.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-multiformats-go-base32
|
(define-public go-github-com-multiformats-go-base32
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-multiformats-go-base32")
|
(name "go-github-com-multiformats-go-base32")
|
||||||
|
|
|
@ -6089,37 +6089,6 @@ (define-public go-github-com-muesli-reflow
|
||||||
helping you to transform blocks of text.")
|
helping you to transform blocks of text.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-muesli-termenv
|
|
||||||
(package
|
|
||||||
(name "go-github-com-muesli-termenv")
|
|
||||||
(version "0.15.2")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/muesli/termenv")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"19yhli6k79aqpra4djp0cl4q76mqxbc1f7in20y0dzhnjb7yz42p"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/muesli/termenv"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-aymanbagabas-go-osc52-v2
|
|
||||||
go-github-com-lucasb-eyer-go-colorful
|
|
||||||
go-github-com-mattn-go-isatty
|
|
||||||
go-github-com-mattn-go-runewidth
|
|
||||||
go-golang-org-x-sys))
|
|
||||||
(home-page "https://github.com/muesli/termenv/")
|
|
||||||
(synopsis "Advanced styling options on the terminal")
|
|
||||||
(description "termenv lets you safely use advanced styling options on the
|
|
||||||
terminal. It gathers information about the terminal environment in terms of
|
|
||||||
its ANSI and color support and offers you convenient methods to colorize and
|
|
||||||
style your output, without you having to deal with all kinds of weird ANSI
|
|
||||||
escape sequences and color conversions.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-olekukonko-tablewriter
|
(define-public go-github-com-olekukonko-tablewriter
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-olekukonko-tablewriter")
|
(name "go-github-com-olekukonko-tablewriter")
|
||||||
|
|
Loading…
Reference in a new issue