summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 13:19:59 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 13:19:59 -0600
commit4ec6e2fb7d3680beab69cf316c583c5535e10a49 (patch)
tree9ec551a66c4671e912eddedee0e8de1cfe18859f
parent7223ee0dc0fa8642e088974ae1726192dbe5050b (diff)
downloadguix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.tar.gz
guix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.tar.bz2
guix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.zip
add rust-core-foundation@0.10
-rw-r--r--unlustig.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 9b8a39c..f5082f4 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1196,3 +1196,25 @@ binding to JVM APIs from Rust.")
(description "This package provides @code{OpenGL} bindings.")
(license license:asl2.0)))
+(define-public rust-core-foundation-0.10
+ (package
+ (name "rust-core-foundation")
+ (version "0.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "core-foundation" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0qscay14s2rwkg8nd8ljhiaf149hj8sfy95d70zssy64r3jp2lmm"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8)
+ ("rust-libc" ,rust-libc-0.2)
+ ("rust-uuid" ,rust-uuid-1))))
+ (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))))
+