diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | c7541d48f2ab63423aa8948a0b46c73c0852ea23 (patch) | |
tree | 9ec551a66c4671e912eddedee0e8de1cfe18859f | |
parent | 3bf8c93a56137f2ee8400328eacb3c1d801829f9 (diff) | |
download | guix-techchud-c7541d48f2ab63423aa8948a0b46c73c0852ea23.tar.gz guix-techchud-c7541d48f2ab63423aa8948a0b46c73c0852ea23.tar.bz2 guix-techchud-c7541d48f2ab63423aa8948a0b46c73c0852ea23.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)))) + |