diff options
-rw-r--r-- | unlustig.scm | 20 |
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)))) + |