mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
gnu: Add rust-bitmaps-3.
* gnu/packages/crates-io.scm (rust-bitmaps-3): Add variable. (rust-bitmaps-2): Inherit from rust-bitmaps-3. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: Id28c99f61efdf21bb8b8bb14f42e66c12ed0a801
This commit is contained in:
parent
bda151d24a
commit
3eaba5bd6b
1 changed files with 27 additions and 13 deletions
|
@ -7142,31 +7142,45 @@ (define-public rust-bitflags-0.2
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments `(#:skip-build? #t))))
|
(arguments `(#:skip-build? #t))))
|
||||||
|
|
||||||
|
(define-public rust-bitmaps-3
|
||||||
|
(package
|
||||||
|
(name "rust-bitmaps")
|
||||||
|
(version "3.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "bitmaps" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1mivd3wyyham6c8y21nq3ka29am6v8hqn7lzmwf91aks2fq89l51"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-proptest" ,rust-proptest-1)
|
||||||
|
("rust-proptest-derive" ,rust-proptest-derive-0.4))))
|
||||||
|
(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-bitmaps-2
|
(define-public rust-bitmaps-2
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-bitmaps-3)
|
||||||
(name "rust-bitmaps")
|
(name "rust-bitmaps")
|
||||||
(version "2.1.0")
|
(version "2.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "bitmaps" version))
|
(uri (crate-uri "bitmaps" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "18k4mcwxl96yvii5kcljkpb8pg5j4jj1zbsdn26nsx4r83846403"))))
|
||||||
"18k4mcwxl96yvii5kcljkpb8pg5j4jj1zbsdn26nsx4r83846403"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs (("rust-typenum" ,rust-typenum-1))
|
||||||
(("rust-typenum" ,rust-typenum-1))
|
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-proptest" ,rust-proptest-0.9)
|
(("rust-proptest" ,rust-proptest-0.9)
|
||||||
("rust-proptest-derive" ,rust-proptest-derive-0.1))))
|
("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-bitpacking-0.8
|
(define-public rust-bitpacking-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue