gnu: Add rust-termios.
* gnu/packages/crates-io.scm (rust-termios): New variable.
This commit is contained in:
parent
a353643035
commit
9bdfe5c1ea
|
@ -888,6 +888,30 @@ and Jaro-Winkler.")
|
||||||
"This package provides helper test traits for synstructure doctests.")
|
"This package provides helper test traits for synstructure doctests.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-termios
|
||||||
|
(package
|
||||||
|
(name "rust-termios")
|
||||||
|
(version "0.3.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "termios" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09any1p4jp4bphvb5ikagnvwjc3xn2djchy96nkpa782xb2j1dkj"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-libc" ,rust-libc))))
|
||||||
|
(home-page "https://github.com/dcuddeback/termios-rs")
|
||||||
|
(synopsis "Safe bindings for the termios library")
|
||||||
|
(description
|
||||||
|
"The termios crate provides safe bindings for the Rust programming language
|
||||||
|
to the terminal I/O interface implemented by Unix operating systems. The safe
|
||||||
|
bindings are a small wrapper around the raw C functions, which converts integer
|
||||||
|
return values to @code{std::io::Result} to indicate success or failure.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-typenum
|
(define-public rust-typenum
|
||||||
(package
|
(package
|
||||||
(name "rust-typenum")
|
(name "rust-typenum")
|
||||||
|
|
Loading…
Reference in New Issue