mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add rust-antidote.
* gnu/packages/crates-io.scm (rust-antidote): New variable.
This commit is contained in:
parent
07d7175406
commit
b44863d1be
1 changed files with 21 additions and 0 deletions
|
@ -28,6 +28,27 @@ (define-module (gnu packages crates-io)
|
|||
;;; Please: Try to add new module packages in alphabetic order.
|
||||
;;;
|
||||
|
||||
(define-public rust-antidote
|
||||
(package
|
||||
(name "rust-antidote")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "antidote" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"19g2sw2qa2ibnh4x7j1snk46593jgx6y7rnvva496ynq61af5z9l"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/sfackler/rust-antidote")
|
||||
(synopsis "Poison-free Mutex and RwLock types")
|
||||
(description
|
||||
"These types expose identical APIs to the standard library @code{Mutex} and
|
||||
@code{RwLock} except that they do not return @code{PoisonError}s.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-autocfg
|
||||
(package
|
||||
(name "rust-autocfg")
|
||||
|
|
Loading…
Reference in a new issue