gnu: Add rust-arrayref-0.3.

* gnu/packages/crates-io.scm (rust-arrayref-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2020-01-16 20:36:53 -08:00 committed by Efraim Flashner
parent c8a2b343d3
commit 8f414fa29d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -308,6 +308,30 @@ text or blue underlined text, on ANSI terminals.")
that runs on Argon2.") that runs on Argon2.")
(license license:expat))) (license license:expat)))
(define-public rust-arrayref-0.3
(package
(name "rust-arrayref")
(version "0.3.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "arrayref" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1vphy316jbgmgckk4z7m8csvlyc8hih9w95iyq48h8077xc2wf0d"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-quickcheck" ,rust-quickcheck-0.6))))
(home-page "https://github.com/droundy/arrayref")
(synopsis "Macros to take array references of slices")
(description
"Macros to take array references of slices.")
(license license:bsd-2)))
(define-public rust-arrayvec-0.4 (define-public rust-arrayvec-0.4
(package (package
(name "rust-arrayvec") (name "rust-arrayvec")