mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-bit-set-0.4.
* gnu/packages/crates-io.scm (rust-bit-set-0.4): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cdf0e84c34
commit
463f41e62d
1 changed files with 21 additions and 0 deletions
|
@ -1761,6 +1761,27 @@ (define-public rust-bit-set-0.5
|
|||
"This package provides a set of bits.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-bit-set-0.4
|
||||
(package
|
||||
(inherit rust-bit-set-0.5)
|
||||
(name "rust-bit-set")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "bit-set" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0320hhcbr73yzjpj2237vw2zq728yg7vmzb8dardg04ff4263gyr"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bit-vec" ,rust-bit-vec-0.4))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.3))))))
|
||||
|
||||
(define-public rust-bit-vec-0.5
|
||||
(package
|
||||
(name "rust-bit-vec")
|
||||
|
|
Loading…
Reference in a new issue