mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add rust-strip-ansi-escapes-0.1.
* gnu/packages/crates-io.scm (rust-strip-ansi-escapes-0.1): New variable.
This commit is contained in:
parent
8a46bf9aeb
commit
61b249fb75
1 changed files with 26 additions and 0 deletions
|
@ -35868,6 +35868,32 @@ developed as part of the Servo project.")
|
|||
"Code share between string_cache and string_cache_codegen.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-strip-ansi-escapes-0.1
|
||||
(package
|
||||
(name "rust-strip-ansi-escapes")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "strip-ansi-escapes" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1vmc6cwxsvp02b17b6x42mnnnn5vlc1dqbcqc2a71yms59p6fqwx"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-vte" ,rust-vte-0.3))))
|
||||
(home-page "https://github.com/luser/strip-ansi-escapes")
|
||||
(synopsis "Strip ANSI escape sequences from byte streams")
|
||||
(description
|
||||
"This crate is for stripping ANSI escape sequences from byte sequences.
|
||||
|
||||
This can be used to take output from a program that includes escape sequences
|
||||
and write it somewhere that does not easily support them, such as a log
|
||||
file.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-strsim-0.9
|
||||
(package
|
||||
(name "rust-strsim")
|
||||
|
|
Loading…
Reference in a new issue