summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
commitcf88de435dd04f6294b3a024550730709f85ae5a (patch)
tree579ed76ca5b7ae14f8255641102c257cebc0ab4d
parent13f5fc6e3b13e14b2fb4fe112b0babee707b0ff2 (diff)
downloadguix-techchud-cf88de435dd04f6294b3a024550730709f85ae5a.tar.gz
guix-techchud-cf88de435dd04f6294b3a024550730709f85ae5a.tar.bz2
guix-techchud-cf88de435dd04f6294b3a024550730709f85ae5a.zip
add rust-objc_exception@0.0.2
-rw-r--r--unlustig.scm22
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)))
+