summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 18:45:17 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 18:45:17 -0600
commit7f74b597cf0661de9b7f9655dab6e547aecda6a3 (patch)
tree0136128bcbbe8636f99a931f2fdfbff27ad9c239
parent14ff2f4d47db29100f90005b23bde4020e61874f (diff)
downloadguix-msglm-7f74b597cf0661de9b7f9655dab6e547aecda6a3.tar.gz
guix-msglm-7f74b597cf0661de9b7f9655dab6e547aecda6a3.tar.bz2
guix-msglm-7f74b597cf0661de9b7f9655dab6e547aecda6a3.zip
add rust-objc@0.1
-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)))
+