mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add rust-fixedbitset.
* gnu/packages/crates-io.scm (rust-fixedbitset): New variable.
This commit is contained in:
parent
9d7d8e8a39
commit
f8f4025ae5
1 changed files with 19 additions and 0 deletions
|
@ -379,6 +379,25 @@ (define-public rust-findshlibs
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-fixedbitset
|
||||
(package
|
||||
(name "rust-fixedbitset")
|
||||
(version "0.1.9")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "fixedbitset" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/bluss/fixedbitset")
|
||||
(synopsis "FixedBitSet is a simple bitset collection")
|
||||
(description "FixedBitSet is a simple bitset collection.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-fnv
|
||||
(package
|
||||
(name "rust-fnv")
|
||||
|
|
Loading…
Reference in a new issue