gnu: Add rust-termion-1.5.
* gnu/packages/rust-cbindgen.scm (rust-termion-1.5): New hidden variable.master
parent
a2f821e74b
commit
438a9173b9
|
@ -751,3 +751,23 @@ and Jaro-Winkler.")
|
||||||
directories.")
|
directories.")
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define rust-termion-1.5
|
||||||
|
(package
|
||||||
|
(name "rust-termion")
|
||||||
|
(version "1.5.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "termion" version))
|
||||||
|
(file-name (string-append name "-" version ".crate"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0c634rg520zjjfhwnxrc2jbfjz7db0rcpsjs1qici0nyghpv53va"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://gitlab.redox-os.org/redox-os/termion")
|
||||||
|
(synopsis "Library for manipulating terminals")
|
||||||
|
(description
|
||||||
|
"This package provides a bindless library for manipulating terminals.")
|
||||||
|
(properties '((hidden? . #t)))
|
||||||
|
(license license:expat)))
|
||||||
|
|
Reference in New Issue