gnu: Add rust-fixedbitset.

* gnu/packages/crates-io.scm (rust-fixedbitset): New variable.
master
Efraim Flashner 2019-08-28 15:50:20 +03:00
parent 9d7d8e8a39
commit f8f4025ae5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -379,6 +379,25 @@ cross platform API.")
(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")