sharlatan pushed a commit to branch go-team
in repository guix.
commit b4b3dd395e987e7f81608ddeffeb9ab7a426f998
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 11 13:30:54 2025 +0000
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
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
gnu/packages/golang.scm | 23 -----------------------
2 files changed, 25 insertions(+), 23 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")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cf6f805151..8688214248 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2278,29 +2278,6 @@ of building man pages.")
encoding in Go.")
(license license:bsd-3)))
-(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-golang-org-rainycape-unidecode
(let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c")
(revision "1"))