diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:05:46 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:05:46 -0600 |
commit | 63c1aa2f4f8b294f192a9f894ee119fa915e3b7a (patch) | |
tree | 8566f4190995d89895c72a6367cd0d913263e84b /unlustig.scm | |
parent | 1350b6566751e2c984f165b64fa568a55425bb8f (diff) | |
download | guix-msglm-63c1aa2f4f8b294f192a9f894ee119fa915e3b7a.tar.gz guix-msglm-63c1aa2f4f8b294f192a9f894ee119fa915e3b7a.tar.bz2 guix-msglm-63c1aa2f4f8b294f192a9f894ee119fa915e3b7a.zip |
add rust-mio-misc@1
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index b76373d..521f300 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -929,3 +929,27 @@ the OS-level clipboard.") "This package provides Easy, safe self-referential struct generation.") (license (list license:expat license:asl2.0)))) +(define-public rust-mio-misc-1 + (package + (name "rust-mio-misc") + (version "1.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "mio-misc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "131r9jjrv329y718gsxd6b9v9iwq6j09n8iazwvbj591lpri4x5l")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-crossbeam" ,rust-crossbeam-0.8) + ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.3) + ("rust-log" ,rust-log-0.4) + ("rust-mio" ,rust-mio-0.7)) + #:cargo-development-inputs (("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/onurzdg/mio-misc") + (synopsis "Miscellaneous components for use with Mio") + (description + "This package provides Miscellaneous components for use with Mio.") + (license license:expat))) + |