diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:19:59 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:19:59 -0600 |
commit | 4ec6e2fb7d3680beab69cf316c583c5535e10a49 (patch) | |
tree | 9ec551a66c4671e912eddedee0e8de1cfe18859f | |
parent | 7223ee0dc0fa8642e088974ae1726192dbe5050b (diff) | |
download | guix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.tar.gz guix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.tar.bz2 guix-msglm-4ec6e2fb7d3680beab69cf316c583c5535e10a49.zip |
add rust-core-foundation@0.10
-rw-r--r-- | unlustig.scm | 22 |
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)))) + |