gnu: Add rust-block-0.1.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Valentin Ignatev 2020-01-16 17:43:48 +03:00 committed by Efraim Flashner
parent 1f634b8159
commit 16e08820de
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1071,6 +1071,30 @@ (define-public rust-blobby-0.1
"Iterator over simple binary blob storage.")
(license (list license:asl2.0 license:expat))))
(define-public rust-block-0.1
(package
(name "rust-block")
(version "0.1.6")
(source
(origin
(method url-fetch)
(uri (crate-uri "block" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"16k9jgll25pzsq14f244q22cdv0zb4bqacldg3kx6h89d7piz30d"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-development-inputs
(("rust-objc-test-utils" ,rust-objc-test-utils-0.0))))
(home-page "http://github.com/SSheldon/rust-block")
(synopsis "Rust interface for Apple's C language extension of blocks")
(description "This package provides a rust interface for Apple's C language
extension of blocks.")
(license license:expat)))
(define-public rust-block-buffer-0.7
(package
(name "rust-block-buffer")