diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-11 13:30:54 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:57 +0000 |
commit | 597adcc192af13ef5b9d469f9ef70b0e53cc77da (patch) | |
tree | 0e07ddf71924506dc866327668f75b291b7058bb /gnu/packages/golang-xyz.scm | |
parent | 0972cb12f628df3264730366515eab741e004433 (diff) |
gnu: go-github-com-lunixbochs-vtclean: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-lunixbochs-vtclean): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I3babc373bf702e022bf126d7867f3a2719cb481e
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c8f86bb31b..f9ff24c5b6 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -9545,6 +9545,31 @@ It stores colors in RGB and provides methods for converting these to various color spaces.") (license license:expat))) +(define-public go-github-com-lunixbochs-vtclean + (package + (name "go-github-com-lunixbochs-vtclean") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lunixbochs/vtclean") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jqn33l1kzy4dk66zbvxz7rlgkgg34s9mhc8z0lrz0i88466zhd8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/lunixbochs/vtclean")) + (home-page "https://github.com/lunixbochs/vtclean") + (synopsis "Filter out terminal escape sequences") + (description + "The @code{vtclean} provides the @command{vtclean} command and a library +designed to clean up raw terminal output by stripping escape sequences, +optionally preserving color.") + (license license:expat))) + (define-public go-github-com-lyft-protoc-gen-star-v2 (package (name "go-github-com-lyft-protoc-gen-star-v2") |