mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 00:42:17 -05:00
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:
parent
1f634b8159
commit
16e08820de
1 changed files with 24 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue