gnu: Add rust-blobby-0.1.

* gnu/packages/crates-io.scm (rust-blobby-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 20:09:14 -08:00 committed by Efraim Flashner
parent ef58ab3166
commit 33d04000a5
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -498,6 +498,33 @@ (define-public rust-blas-sys-0.7
(license (list license:asl2.0
license:expat))))
(define-public rust-blobby-0.1
(package
(name "rust-blobby")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "blobby" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1xicpf3s2mi5xqnx8ps5mdych4ib5nh2nfsbrsg8ar8bjk1girbg"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-byteorder" ,rust-byteorder-1.3))
#:cargo-development-inputs
(("rust-byteorder" ,rust-byteorder-1.3)
("rust-hex" ,rust-hex-0.3))))
(home-page "https://github.com/RustCrypto/utils")
(synopsis "Iterator over simple binary blob storage")
(description
"Iterator over simple binary blob storage.")
(license (list license:asl2.0 license:expat))))
(define-public rust-block-buffer-0.7
(package
(name "rust-block-buffer")