1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 22:50:34 +02:00

gnu: Add rust-redox-termios-0.1.

* gnu/packages/rust-cbindgen.scm (rust-redox-termios-0.1): New hidden
variable.
This commit is contained in:
Efraim Flashner
2019-10-23 10:01:14 +03:00
parent 3f03cb20d6
commit a8c86afaa5

View File

@@ -566,3 +566,23 @@ functionality.")
system calls.")
(properties '((hidden? . #t)))
(license license:expat)))
(define rust-redox-termios-0.1
(package
(name "rust-redox-termios")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "redox-termios" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0xhgvdh62mymgdl3jqrngl8hr4i8xwpnbsxnldq0l47993z1r2by"))))
(build-system cargo-build-system)
(home-page "https://github.com/redox-os/termios")
(synopsis "Rust library to access Redox termios functions")
(description
"This package provides a Rust library to access Redox termios functions.")
(properties '((hidden? . #t)))
(license license:expat)))