gnu: Add rust-console-0.7.
* gnu/packages/crates-io.scm (rust-console-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
c3343640b1
commit
3b4f18354e
|
@ -983,6 +983,39 @@ need compiler-rt intrinsics.")
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-console-0.7
|
||||
(package
|
||||
(name "rust-console")
|
||||
(version "0.7.7")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "console" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0a4n2syzik9lh02v2i4wdazvm05d99bib7dw0lqvz8mq2hn7r9cc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-atty" ,rust-atty-0.2)
|
||||
("rust-clicolors-control" ,rust-clicolors-control-1.0)
|
||||
("rust-encode-unicode" ,rust-encode-unicode-0.3)
|
||||
("rust-lazy-static" ,rust-lazy-static-1.3)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.8)
|
||||
("rust-regex" ,rust-regex-1.1)
|
||||
("rust-termios" ,rust-termios-0.3)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(home-page "https://github.com/mitsuhiko/console")
|
||||
(synopsis "Terminal and console abstraction for Rust")
|
||||
(description
|
||||
"This package provides a terminal and console abstraction for Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-console-error-panic-hook-0.1
|
||||
(package
|
||||
(name "rust-console-error-panic-hook")
|
||||
|
|
Reference in New Issue