mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add rust-bit-field-0.10.
* gnu/packages/crates-io.scm (rust-bit-field-0.10): New variable.
This commit is contained in:
parent
2919de7e80
commit
1efcfa0f23
1 changed files with 20 additions and 0 deletions
|
@ -2176,6 +2176,26 @@ (define-public rust-bindgen-0.33
|
|||
("rust-diff" ,rust-diff-0.1)
|
||||
("rust-shlex" ,rust-shlex-0.1))))))
|
||||
|
||||
(define-public rust-bit-field-0.10
|
||||
(package
|
||||
(name "rust-bit-field")
|
||||
(version "0.10.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bit-field" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "192rsg8g3ki85gj8rzslblnwr53yw5q4l8vfg6bf1lkn4cfdvdnw"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/phil-opp/rust-bit-field")
|
||||
(synopsis "Methods for operating on individual bits and ranges of bits")
|
||||
(description
|
||||
"This is a simple crate which provides the BitField trait, which provides
|
||||
methods for operating on individual bits and ranges of bits on Rust's integral
|
||||
types.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-bit-set-0.5
|
||||
(package
|
||||
(name "rust-bit-set")
|
||||
|
|
Loading…
Reference in a new issue