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:
Efraim Flashner 2024-03-31 14:58:03 +03:00
parent 9f1543931e
commit 22f50a100f
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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")