1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-24 11:11:12 +02:00

gnu: Add go-github-com-acarl005-stripansi.

* gnu/packages/golang-xyz.scm (go-github-com-acarl005-stripansi): New variable.

Change-Id: Ic44dbfa3de7914cd5c4102a83e95aecd7cf793ff
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Danny Milosavljevic
2025-12-05 18:56:47 +01:00
committed by Sharlatan Hellseher
parent af566bc06c
commit 2d23133866

View File

@@ -920,6 +920,30 @@ constants, while scripts are represented by RangeTable.")
"This package is an implementation of HTTP Basic and HTTP Digest authentication.")
(license license:asl2.0)))
(define-public go-github-com-acarl005-stripansi
(package
(name "go-github-com-acarl005-stripansi")
(version "0.0.0-20180116102854-5a71ef0e047d")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/acarl005/stripansi")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "02sxiishdixm791jqbkmhdcvc712l0fb8rqmibxzgc61h0qs6rs3"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/acarl005/stripansi"))
(home-page "https://github.com/acarl005/stripansi")
(synopsis "Strip ANSI escape codes from strings")
(description
"This package provides a function to strip ANSI escape codes from
strings in Go. Useful for removing terminal color codes from text.")
(license license:expat)))
(define-public go-github-com-aclements-go-perfevent
(package
(name "go-github-com-aclements-go-perfevent")