mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-generic-array-0.13.
* gnu/packages/crates-io.scm (rust-generic-array-0.13): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
061eda1ec4
commit
31e4305fd6
1 changed files with 30 additions and 0 deletions
|
@ -2703,6 +2703,36 @@ (define-public rust-gcc-0.3
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-generic-array-0.13
|
||||
(package
|
||||
(name "rust-generic-array")
|
||||
(version "0.13.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "generic-array" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1kddwxpd58y807y1r3lijg7sw3gxm6nczl6wp57gamhv6mhygl8f"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1.0)
|
||||
("rust-typenum" ,rust-typenum-1.10))
|
||||
#:cargo-development-inputs
|
||||
(("rust-bincode" ,rust-bincode-1.1)
|
||||
("rust-serde-json" ,rust-serde-json-1.0))))
|
||||
(home-page
|
||||
"https://github.com/fizyk20/generic-array")
|
||||
(synopsis
|
||||
"Generic types implementing functionality of arrays")
|
||||
(description
|
||||
"Generic types implementing functionality of arrays.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-getopts-0.2
|
||||
(package
|
||||
(name "rust-getopts")
|
||||
|
|
Loading…
Reference in a new issue