mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 21:29:09 -05:00
gnu: Add rust-reference-counted-singleton-0.1.
* gnu/packages/crates-io.scm (rust-reference-counted-singleton-0.1): New variable. Change-Id: I1ba985dc8fe4e9dd06cefef557c62e90082f9c8f
This commit is contained in:
parent
70c23f38ac
commit
7ce06daaab
1 changed files with 22 additions and 0 deletions
|
@ -60426,6 +60426,28 @@ (define-public rust-ref-thread-local-0.1
|
|||
`static`s like using both of `lazy_static!` and `@code{RefCell`}")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-reference-counted-singleton-0.1
|
||||
(package
|
||||
(name "rust-reference-counted-singleton")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "reference-counted-singleton" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1fcc50l2xh74r2qn4nx2kk0h4i5ys3v4fhgpg5cz793g00gq8br4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs (("rust-assert-matches" ,rust-assert-matches-1)
|
||||
("rust-serial-test" ,rust-serial-test-3))))
|
||||
(home-page "https://codeberg.org/koutheir/reference-counted-singleton.git")
|
||||
(synopsis "Reference-counted singleton with recreatable data")
|
||||
(description
|
||||
"This package provides a reference-counted singleton whose protected data
|
||||
can be recreated as needed.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-refpool-0.4
|
||||
(package
|
||||
(name "rust-refpool")
|
||||
|
|
Loading…
Reference in a new issue