mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add rust-serial-core-0.4.
* gnu/packages/crates-io.scm (rust-serial-core-0.4): New variable. Change-Id: Iabd12ef4492144ea1c7e63dc3989ed569b927839 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
4484472964
commit
6d7c8b6574
1 changed files with 19 additions and 0 deletions
|
@ -70688,6 +70688,25 @@ (define-public rust-serial-0.4
|
|||
"This package provides Rust library for accessing serial ports.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-serial-core-0.4
|
||||
(package
|
||||
(name "rust-serial-core")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "serial-core" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "10a5lvllz3ljva66bqakrn8cxb3pkaqyapqjw9x760al6jdj0iiz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
|
||||
(home-page "https://github.com/dcuddeback/serial-rs")
|
||||
(synopsis "Rust abstractions for serial ports")
|
||||
(description "This package provides Rust abstractions for serial ports.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-serial-test-3
|
||||
(package
|
||||
(name "rust-serial-test")
|
||||
|
|
Loading…
Reference in a new issue