mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add rust-ansitok-0.2.
* gnu/packages/crates-io.scm (rust-ansitok-0.2): New variable. Change-Id: If2460a8e62524a013f2ff023e89744dfac447ce9
This commit is contained in:
parent
9f1543931e
commit
22f50a100f
1 changed files with 21 additions and 0 deletions
|
@ -1764,6 +1764,27 @@ (define-public rust-ansi-width-0.1
|
|||
"Calculate the width of a string when printed to the terminal.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-ansitok-0.2
|
||||
(package
|
||||
(name "rust-ansitok")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ansitok" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "10vc2d1325qsbvbnqnj48zg55wv7jz929drx9vpdscdvl7k48012"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-nom" ,rust-nom-7)
|
||||
("rust-vte" ,rust-vte-0.10))))
|
||||
(home-page "https://gitlab.com/zhiburt/ansitok")
|
||||
(synopsis "Library for parsing ANSI Escape Codes")
|
||||
(description
|
||||
"This package provides a library for parsing ANSI Escape Codes.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-anstream-0.6
|
||||
(package
|
||||
(name "rust-anstream")
|
||||
|
|
Loading…
Reference in a new issue