me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-nb-1.

* gnu/packages/crates-io.scm (rust-nb-1): New variable.
master
Nicolas Goaziou 2021-12-27 18:48:08 +01:00
parent 36c0111b6e
commit e451061dd4
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 18 additions and 0 deletions

View File

@ -32025,6 +32025,24 @@ implementation.")
"This package provides a crate to perform natural ordering for Rust.")
(license license:expat)))
(define-public rust-nb-1
(package
(name "rust-nb")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "nb" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1blc9143cqh3cn2imr050qczbnfrfdl10xxnfdggamlybnn3fv2l"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/rust-embedded/nb")
(synopsis "Minimal non-blocking I/O layer")
(description "This package provides a minimal non-blocking I/O layer.")
(license (list license:expat license:asl2.0))))
(define-public rust-nb-connect-1
(package
(name "rust-nb-connect")