1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-25 18:41:54 +02:00

gnu: go-github-com-juju-ansiterm: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-juju-ansiterm): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I30480f256c3b711065bd91910d248d501cb574c4
This commit is contained in:
Sharlatan Hellseher
2024-12-29 21:51:18 +00:00
parent f12d7824a1
commit b7c9b80058
2 changed files with 29 additions and 27 deletions
+29
View File
@@ -7084,6 +7084,35 @@ called concurrently with themselves and each other.")
"This package is a simple exponential backoff counter in Go.")
(license license:expat))))
(define-public go-github-com-juju-ansiterm
(package
(name "go-github-com-juju-ansiterm")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/juju/ansiterm")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "05mk7mlvg11dd6b0j0wlq547ghbmx2ywwrlbcb4kddpg7qaqp1va"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/juju/ansiterm"))
(propagated-inputs
(list go-gopkg-in-check-v1
go-github-com-mattn-go-isatty
go-github-com-mattn-go-colorable
go-github-com-lunixbochs-vtclean))
(home-page "https://github.com/juju/ansiterm")
(synopsis "Writer to output ANSI escape codes for color and styles")
(description
"The ansiterm package provides a writer to output the ANSI escape codes
for color and styles.")
(license license:lgpl3)))
(define-public go-github-com-k0kubun-go-ansi
(package
(name "go-github-com-k0kubun-go-ansi")
-27
View File
@@ -4236,33 +4236,6 @@ in tests to find template errors early, and along template execution paths
that might only rarely be reached.")
(license license:expat)))
(define-public go-github-com-juju-ansiterm
(package
(name "go-github-com-juju-ansiterm")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/juju/ansiterm")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "05mk7mlvg11dd6b0j0wlq547ghbmx2ywwrlbcb4kddpg7qaqp1va"))))
(build-system go-build-system)
(arguments (list #:import-path "github.com/juju/ansiterm"))
(propagated-inputs
(list go-gopkg-in-check-v1
go-github-com-mattn-go-isatty
go-github-com-mattn-go-colorable
go-github-com-lunixbochs-vtclean))
(home-page "https://github.com/juju/ansiterm")
(synopsis "Writer to output ANSI escape codes for color and styles")
(description
"The ansiterm package provides a writer to output the ANSI escape codes
for color and styles.")
(license license:lgpl3)))
(define-public go-github-com-kevinburke-ssh-config
(package
(name "go-github-com-kevinburke-ssh-config")