gnu: Add rust-objc-0.2.

* gnu/packages/crates-io.scm (rust-objc-0.2): New variable.

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

View file

@ -8006,6 +8006,31 @@ (define-public rust-numtoa-0.1
"This package can convert numbers into stack-allocated byte arrays.")
(license (list license:expat license:asl2.0))))
(define-public rust-objc-0.2
(package
(name "rust-objc")
(version "0.2.7")
(source
(origin
(method url-fetch)
(uri (crate-uri "objc" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1cbpf6kz8a244nn1qzl3xyhmp05gsg4n313c9m3567625d3innwi"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests require gcc-objc.
#:cargo-inputs
(("rust-malloc-buf" ,rust-malloc-buf-0.0)
("rust-objc-exception" ,rust-objc-exception-0.1))))
(home-page "http://github.com/SSheldon/rust-objc")
(synopsis "Objective-C Runtime bindings and wrapper for Rust")
(description "This package provides an Objective-C Runtime bindings and
wrapper for Rust.")
(license license:expat)))
(define-public rust-objc-exception-0.1
(package
(name "rust-objc-exception")