summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unlustig.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 448129a..6016a59 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1607,3 +1607,25 @@ binding to JVM APIs from Rust.")
"This package provides Bindings to Core Graphics for @code{macOS}.")
(license (list license:expat license:asl2.0))))
+(define-public rust-objc-0.1
+ (package
+ (name "rust-objc")
+ (version "0.1.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "objc" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0mj00d6fzdn518ryq4r1r32njgvgg1yri8n7by2rh4q3r1zgscsr"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
+ ("rust-malloc-buf" ,rust-malloc-buf-0.0.6)
+ ("rust-objc-exception" ,rust-objc-exception-0.0.2))))
+ (home-page "http://github.com/SSheldon/rust-objc")
+ (synopsis "Objective-C Runtime bindings and wrapper for Rust")
+ (description
+ "This package provides Objective-C Runtime bindings and wrapper for Rust.")
+ (license license:expat)))
+