diff options
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 4ae6adc..b325f31 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1690,3 +1690,25 @@ binding to JVM APIs from Rust.") "This package provides Structs for handling malloc'd memory passed to Rust.") (license license:expat))) +(define-public rust-objc-exception-0.0.2 + (package + (name "rust-objc-exception") + (version "0.0.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "objc_exception" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02a22wqcx0hkbnsin7fzgpvvhw8ynv0sks2l4ra1wmk556k8axar")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-gcc" ,rust-gcc-0.3) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "http://github.com/SSheldon/rust-objc-exception") + (synopsis + "Rust interface for Objective-C's throw and try/catch statements") + (description + "This package provides Rust interface for Objective-C's throw and try/catch statements.") + (license license:expat))) + |