me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-objc-id-0.1.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-16 17:37:56 +03:00 committed by Efraim Flashner
parent 55086c2e37
commit 9b97d73ced
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -8056,6 +8056,29 @@ wrapper for Rust.")
try/catch statements.")
(license license:expat)))
(define-public rust-objc-id-0.1
(package
(name "rust-objc-id")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "objc_id" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fq71hnp2sdblaighjc82yrac3adfmqzhpr11irhvdfp9gdlsbf9"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests require gcc-objc.
#:cargo-inputs (("rust-objc" ,rust-objc-0.2))))
(home-page "http://github.com/SSheldon/rust-objc-id")
(synopsis "Rust smart pointers for Objective-C reference counting")
(description
"This package provides Rust smart pointers for Objective-C reference counting.")
(license license:expat)))
(define-public rust-objc-test-utils-0.0
(package
(name "rust-objc-test-utils")