mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: Add rust-vec1-1.
* gnu/packages/crates-io.scm (rust-vec1-1): New variable. Change-Id: I99f4783599b172c0721d30d8801bf6db469d73db
This commit is contained in:
parent
ae7fde0ae1
commit
a4dc727bb3
1 changed files with 23 additions and 0 deletions
|
@ -85772,6 +85772,29 @@ (define-public rust-vec-map-0.8
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-vec1-1
|
||||
(package
|
||||
(name "rust-vec1")
|
||||
(version "1.12.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "vec1" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0dk9qlly3n6b5g71p9rxnnfyx7v1d31364x8wbabz2f1zz7hvdpz"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-serde" ,rust-serde-1)
|
||||
("rust-smallvec" ,rust-smallvec-1))
|
||||
#:cargo-development-inputs (("rust-proptest" ,rust-proptest-1)
|
||||
("rust-serde-json" ,rust-serde-json-1))))
|
||||
(home-page "https://github.com/rustonaut/vec1/")
|
||||
(synopsis "Vec wrapper assuring that it has at least 1 element")
|
||||
(description "This package provides a std Vec wrapper assuring that it has
|
||||
at least 1 element.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-vek-0.15
|
||||
(package
|
||||
(name "rust-vek")
|
||||
|
|
Loading…
Reference in a new issue