diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:12:15 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:49 +0300 |
commit | 8f5cb34ff3a28db09b008e427062052f388f41ba (patch) | |
tree | a78d81d70f23ef8822ac4b81d76e27bec1a21ebc | |
parent | 9cb6de30b16c561476285680d1a17e7515659d6e (diff) | |
download | guix-8f5cb34ff3a28db09b008e427062052f388f41ba.tar.gz guix-8f5cb34ff3a28db09b008e427062052f388f41ba.zip |
gnu: Add rust-deadpool-sync-0.1.
* gnu/packages/crates-io.scm (rust-deadpool-sync-0.1): Add variable.
Change-Id: I6faa6f867eb0b05e7748a7db6fc9d68180121c3f
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 560f5ed11b..f038947ee5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19033,6 +19033,27 @@ of any type.") for sync managers.") (license (list license:expat license:asl2.0)))) +(define-public rust-deadpool-sync-0.1 + (package + (name "rust-deadpool-sync") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "deadpool-sync" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02habnbf9gna5yg5parpfbgz1342mzyxmd5lcz7f9jhk9i4p1nzq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-deadpool-runtime" ,rust-deadpool-runtime-0.1) + ("rust-tracing" ,rust-tracing-0.1)))) + (home-page "https://github.com/bikeshedder/deadpool") + (synopsis "Dead simple async pool utitities for sync managers") + (description "This package provides dead simple async pool utitities +for sync managers.") + (license (list license:expat license:asl2.0)))) + (define-public rust-debug-helper-0.3 (package (name "rust-debug-helper") |