gnu: Add rust-fixedbitset-0.4.

* gnu/packages/crates-io.scm (rust-fixedbitset-0.4): New variable.
(rust-fixedbitset-0.2): Inherit from above.
This commit is contained in:
Nicolas Goaziou 2021-12-07 22:25:32 +01:00 committed by Leo Famulari
parent 770c421df2
commit 3aff2ca1b3
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -18595,8 +18595,29 @@ (define-public rust-fixed-1
(description "This package provides fixed-point numbers in Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-fixedbitset-0.4
(package
(name "rust-fixedbitset")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "fixedbitset" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "17mnwa48dy11dnbasxa0c92sdj243acjl2ilhpcb1fa0pvxa93ir"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/bluss/fixedbitset")
(synopsis "Simple bitset collection")
(description "FixedBitSet is a simple bitset collection.")
(license (list license:expat license:asl2.0))))
(define-public rust-fixedbitset-0.2
(package
(inherit rust-fixedbitset-0.4)
(name "rust-fixedbitset")
(version "0.2.0")
(source
@ -18606,13 +18627,7 @@ (define-public rust-fixedbitset-0.2
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kg03p777wc0dajd9pvlcnsyrwa8dhqwf0sd9r4dw0p82rs39arp"))))
(build-system cargo-build-system)
(home-page "https://github.com/petgraph/fixedbitset")
(synopsis "FixedBitSet is a simple bitset collection")
(description "FixedBitSet is a simple bitset collection.")
(license (list license:asl2.0
license:expat))))
"0kg03p777wc0dajd9pvlcnsyrwa8dhqwf0sd9r4dw0p82rs39arp"))))))
(define-public rust-fixedbitset-0.1
(package