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
commit6a0e4c672303c19c0896e0a474687b4a1dc173df (patch)
tree6f3d6adca481c0eeab6242451ba043ea3145da86
parent1daf81d4ec7dfdc3f0b581411a45a34771ec9b73 (diff)
downloadguix-techchud-6a0e4c672303c19c0896e0a474687b4a1dc173df.tar.gz
guix-techchud-6a0e4c672303c19c0896e0a474687b4a1dc173df.tar.bz2
guix-techchud-6a0e4c672303c19c0896e0a474687b4a1dc173df.zip
add rust-core-foundation@0.2
-rw-r--r--unlustig.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 6016a59..8c7085d 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1629,3 +1629,24 @@ binding to JVM APIs from Rust.")
"This package provides Objective-C Runtime bindings and wrapper for Rust.")
(license license:expat)))
+(define-public rust-core-foundation-0.2
+ (package
+ (name "rust-core-foundation")
+ (version "0.2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "core-foundation" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0rvcn7ab5r69wvn7gby745jlpy8pirfywcdxbiypy083s93dggr5"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.2)
+ ("rust-libc" ,rust-libc-0.2))))
+ (home-page "https://github.com/servo/core-foundation-rs")
+ (synopsis "Bindings to Core Foundation for macOS")
+ (description
+ "This package provides Bindings to Core Foundation for @code{macOS}.")
+ (license (list license:expat license:asl2.0))))
+