me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-terminfo-0.6.

* gnu/packages/crates-io.scm (rust-terminfo-0.6): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-20 01:02:37 +03:00 committed by Efraim Flashner
parent b5478ee6a5
commit 14bae8e720
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -14950,6 +14950,31 @@ writing colored text to a terminal.")
(license (list license:unlicense
license:expat))))
(define-public rust-terminfo-0.6
(package
(name "rust-terminfo")
(version "0.6.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "terminfo" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"17k8vqvicd6yg0iqmkjnxjhz8h8pknv86r03nq3f3ayjmxdhclcf"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-fnv" ,rust-fnv-1.0)
("rust-nom" ,rust-nom-4.2)
("rust-phf" ,rust-phf-0.7)
("rust-phf-codegen" ,rust-phf-codegen-0.7))))
(home-page "https://github.com/meh/rust-terminfo")
(synopsis "Terminal information")
(description "Terminal capabilities with type-safe getters.")
(license license:wtfpl2)))
(define-public rust-termion-1.5
(package
(name "rust-termion")