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
commite166421e71d2c55f4e9506437e017ec844c16884 (patch)
tree33c375dc8b32ef79d63cecb160c2d7ecfd23db85
parentcf88de435dd04f6294b3a024550730709f85ae5a (diff)
downloadguix-techchud-e166421e71d2c55f4e9506437e017ec844c16884.tar.gz
guix-techchud-e166421e71d2c55f4e9506437e017ec844c16884.tar.bz2
guix-techchud-e166421e71d2c55f4e9506437e017ec844c16884.zip
add rust-core-foundation-sys@0.2
-rw-r--r--unlustig.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index b325f31..8c80495 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1712,3 +1712,23 @@ binding to JVM APIs from Rust.")
"This package provides Rust interface for Objective-C's throw and try/catch statements.")
(license license:expat)))
+(define-public rust-core-foundation-sys-0.2
+ (package
+ (name "rust-core-foundation-sys")
+ (version "0.2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "core-foundation-sys" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "13f7f3kblyj6yxcxm74yg84vj9ahaprlc1vgblagmj6bzmzmsnh6"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("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))))
+