mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-bitmaps-2.
* gnu/packages/crates-io.scm (rust-bitmaps-2): New variable.
This commit is contained in:
parent
b36299c7f4
commit
94b41147c2
1 changed files with 26 additions and 0 deletions
|
@ -4864,6 +4864,32 @@ (define-public rust-bitflags-0.2
|
|||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))))
|
||||
|
||||
(define-public rust-bitmaps-2
|
||||
(package
|
||||
(name "rust-bitmaps")
|
||||
(version "2.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bitmaps" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18k4mcwxl96yvii5kcljkpb8pg5j4jj1zbsdn26nsx4r83846403"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-typenum" ,rust-typenum-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-proptest", rust-proptest-0.9)
|
||||
("rust-proptest-derive", rust-proptest-derive-0.1))))
|
||||
(home-page "https://github.com/bodil/bitmaps")
|
||||
(synopsis "Fixed size compact boolean array in Rust")
|
||||
(description "This crate provides a convenient and efficient way of
|
||||
declaring and working with fixed size bitmaps in Rust.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public rust-bitstream-io-1
|
||||
(package
|
||||
(name "rust-bitstream-io")
|
||||
|
|
Loading…
Reference in a new issue