gnu: Add rust-objc-foundation-0.1.

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

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

View file

@ -8081,6 +8081,32 @@ (define-public rust-objc-exception-0.1
try/catch statements.")
(license license:expat)))
(define-public rust-objc-foundation-0.1
(package
(name "rust-objc-foundation")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "objc-foundation" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1y9bwb3m5fdq7w7i4bnds067dhm4qxv4m1mbg9y61j9nkrjipp8s"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; Only available on macOS.
#:cargo-inputs
(("rust-block" ,rust-block-0.1)
("rust-objc" ,rust-objc-0.2)
("rust-objc-id" ,rust-objc-id-0.1))))
(home-page "http://github.com/SSheldon/rust-objc-foundation")
(synopsis "Rust wrapper for Objective-C's Foundation framework")
(description "This package provides a rust wrapper for Objective-C's
Foundation framework.")
(license license:expat)))
(define-public rust-objc-id-0.1
(package
(name "rust-objc-id")