guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2d2313386686e867d27e2b36d91c982b43782ca0
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 18:56:47 2025 +0100
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 <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2d4d6f979e..7124e21fdb 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")