3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-bit-set-0.5.

* gnu/packages/crates-io.scm (rust-bit-set-0.5): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-15 08:34:23 -08:00 committed by Efraim Flashner
parent 9fce9dd758
commit e017969bf0
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -456,6 +456,32 @@ and no more (caveat: black_box is still missing!).")
that uses Serde for transforming structs into bytes and vice versa!")
(license license:expat)))
(define-public rust-bit-set-0.5
(package
(name "rust-bit-set")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "bit-set" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"100ac8867bvbx9kv634w4xjk98b71i8nq4wdcvpf3cf4ha4j6k78"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bit-vec" ,rust-bit-vec-0.5))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.4))))
(home-page "https://github.com/contain-rs/bit-set")
(synopsis "Set of bits")
(description
"This package provides a set of bits.")
(license (list license:asl2.0 license:expat))))
(define-public rust-bit-vec-0.5
(package
(name "rust-bit-vec")