me
/
guix
Archived
1
0
Fork 0

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>
master
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
1 changed files with 26 additions and 0 deletions

View File

@ -8081,6 +8081,32 @@ wrapper for Rust.")
try/catch statements.") try/catch statements.")
(license license:expat))) (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 (define-public rust-objc-id-0.1
(package (package
(name "rust-objc-id") (name "rust-objc-id")