mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
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:
parent
770c421df2
commit
3aff2ca1b3
1 changed files with 22 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue