diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:07:03 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:07:03 -0600 |
commit | 95fe1b6b0eae98a217ec103b6704d7898e005e53 (patch) | |
tree | 579ed76ca5b7ae14f8255641102c257cebc0ab4d | |
parent | 191921caf977b0972091ca3d6a485428f57eb212 (diff) | |
download | guix-msglm-95fe1b6b0eae98a217ec103b6704d7898e005e53.tar.gz guix-msglm-95fe1b6b0eae98a217ec103b6704d7898e005e53.tar.bz2 guix-msglm-95fe1b6b0eae98a217ec103b6704d7898e005e53.zip |
add rust-objc_exception@0.0.2
-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))) + |