gnu: Add rust-jod-thread-0.1.
* gnu/packages/crates-io.scm (rust-jod-thread-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
78387d4672
commit
b59e785e3c
1 changed files with 24 additions and 0 deletions
|
@ -22176,6 +22176,30 @@ the jni-bindgen code generator for binding to JVM APIs from Rust.")
|
||||||
"An implementation of the GNU make jobserver for Rust.")
|
"An implementation of the GNU make jobserver for Rust.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-jod-thread-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-jod-thread")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "jod-thread" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1bj7g6l59ybcf33znf80ccqbxvs1cmd8ynd4m8h7ywdqk473c8wb"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments `(#:skip-build? #t))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/matklad/jod-thread")
|
||||||
|
(synopsis
|
||||||
|
"Thin wrapper around @code{std::thread} which joins on drop by default")
|
||||||
|
(description
|
||||||
|
"Join On Drop thread (jod_thread) is a thin wrapper around
|
||||||
|
@code{std::thread}, which makes sure that by default all threads are joined.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-jsonrpc-core-14
|
(define-public rust-jsonrpc-core-14
|
||||||
(package
|
(package
|
||||||
(name "rust-jsonrpc-core")
|
(name "rust-jsonrpc-core")
|
||||||
|
|
Reference in a new issue