gnu: Add rust-vte-0.3.

* gnu/packages/crates-io.scm (rust-vte-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Valentin Ignatev 2020-01-19 16:14:31 +03:00 committed by Efraim Flashner
parent 64bb237eb8
commit 791a8e5331
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -16287,6 +16287,30 @@ (define-public rust-void-1.0
"The uninhabited void type for use in statically impossible cases.")
(license license:expat)))
(define-public rust-vte-0.3
(package
(name "rust-vte")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "vte" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1kz8svnqnxclllsgh0ck20rplw3qzp46b5v30yscnzrgw8vgahjg"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; tests not included in release
#:cargo-inputs
(("rust-utf8parse" ,rust-utf8parse-0.1))))
(home-page "https://github.com/jwilm/vte")
(synopsis "Parser for implementing terminal emulators")
(description
"This package provides a parser for implementing terminal emulators.")
(license (list license:asl2.0 license:expat))))
(define-public rust-wait-timeout-0.2
(package
(name "rust-wait-timeout")