me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-fastrand-1.

* gnu/packages/crates-io.scm (rust-fastrand-1): New variable.
master
Nicolas Goaziou 2020-12-20 12:56:51 +01:00
parent ed7959b7e4
commit cb0c8d1209
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 23 additions and 0 deletions
gnu/packages

View File

@ -9560,6 +9560,29 @@ implement features such as look-around and backtracking, which are not
supported in purely NFA-based implementations.")
(license license:expat)))
(define-public rust-fastrand-1
(package
(name "rust-fastrand")
(version "1.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fastrand" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1qvz1i7g5mb2hcsaawrvxx88b8vwrsr85qr98ffmrkj5fh2sypya"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-instant" ,rust-instant-0.1))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.7))))
(home-page "https://github.com/stjepang/fastrand")
(synopsis "Simple and fast random number generator")
(description
"This package provides a simple and fast random number generator.")
(license (list license:asl2.0 license:expat))))
(define-public rust-femme-2
(package
(name "rust-femme")