diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-12-05 18:56:47 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-05 23:54:15 +0000 |
| commit | 2d2313386686e867d27e2b36d91c982b43782ca0 (patch) | |
| tree | 5d1549a7b0837bdb72bf020ecd66c18d87d71750 | |
| parent | af566bc06c233d597a058f31515606826ecb2e42 (diff) | |
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>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 2d4d6f979ea..7124e21fdbf 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") |
