diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-09-16 23:19:31 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-10-12 11:41:46 +0530 |
commit | c345ff6acd2f82c2aa61d91128c5e298f081a286 (patch) | |
tree | b314d4e61806542ef6f0cdfd9dd65eab6861b5d8 /gnu/packages/crates-io.scm | |
parent | 10826098753bdcd140fb7ecc5083846f0a676786 (diff) | |
download | guix-c345ff6acd2f82c2aa61d91128c5e298f081a286.tar.gz |
gnu: Add rust-retain-mut-0.1.
* gnu/packages/crates-io.scm (rust-retain-mut-0.1): New variable.
Diffstat (limited to 'gnu/packages/crates-io.scm')
-rw-r--r-- | gnu/packages/crates-io.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b0558ab748..1fa8372e81 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19718,6 +19718,25 @@ uses finite automata and guarantees linear time matching on all inputs.") (license (list license:asl2.0 license:expat)))) +(define-public rust-retain-mut-0.1 + (package + (name "rust-retain-mut") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "retain_mut" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0cgmm1q7sr31r9wk7syh53ipgqpl37jzsvahdhmwrsi6mmcdc1g0")))) + (build-system cargo-build-system) + (home-page "https://github.com/upsuper/retain_mut") + (synopsis "Mutable borrow for the retain predicate") + (description "This package provides retain_mut method that has the same +functionality as retain but gives mutable borrow to the predicate.") + (license license:expat))) + (define-public rust-ring-0.16 (package (name "rust-ring") |