me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-retain-mut-0.1.

* gnu/packages/crates-io.scm (rust-retain-mut-0.1): New variable.
master
Arun Isaac 2020-09-16 23:19:31 +05:30
parent 1082609875
commit c345ff6acd
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 19 additions and 0 deletions

View File

@ -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")