diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-09 23:28:30 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-13 11:49:56 +0100 |
commit | 61b249fb7509a36209b3d2d598fb30aa8345a7c5 (patch) | |
tree | 6a98c0f84841fadc68f496c79be6aaf903eb496a /gnu/packages/crates-io.scm | |
parent | 8a46bf9aeb9c936ab8cdb1ecf52dae42dc005b2d (diff) |
gnu: Add rust-strip-ansi-escapes-0.1.
* gnu/packages/crates-io.scm (rust-strip-ansi-escapes-0.1): New variable.
Diffstat (limited to 'gnu/packages/crates-io.scm')
-rw-r--r-- | gnu/packages/crates-io.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5d9feac839..b2597d4633 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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") |