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
This commit is contained in:
Sharlatan Hellseher 2025-01-11 13:30:54 +00:00
parent 7711ded42b
commit 97d0bf455d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 23 deletions

View file

@ -9545,6 +9545,31 @@ (define-public go-github-com-lucasb-eyer-go-colorful
color spaces.") color spaces.")
(license license:expat))) (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 (define-public go-github-com-lyft-protoc-gen-star-v2
(package (package
(name "go-github-com-lyft-protoc-gen-star-v2") (name "go-github-com-lyft-protoc-gen-star-v2")

View file

@ -2278,29 +2278,6 @@ (define-public go-github-com-cention-sany-utf7
encoding in Go.") encoding in Go.")
(license license:bsd-3))) (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 (define-public go-golang-org-rainycape-unidecode
(let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c") (let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c")
(revision "1")) (revision "1"))