diff options
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index b8ca385..24923e1 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1545,3 +1545,25 @@ binding to JVM APIs from Rust.") (description "This package provides An XML library in pure Rust.") (license license:expat))) +(define-public rust-cocoa-0.2 + (package + (name "rust-cocoa") + (version "0.2.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "cocoa" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10lzgy15wdk2vq5bg6xa8iqsbh8b44159p839z9mimmgkrxi6bbn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-0.3) + ("rust-core-graphics" ,rust-core-graphics-0.3) + ("rust-libc" ,rust-libc-0.2) + ("rust-objc" ,rust-objc-0.1)))) + (home-page "https://github.com/servo/core-foundation-rs") + (synopsis "Bindings to Cocoa for macOS") + (description "This package provides Bindings to Cocoa for @code{macOS}.") + (license (list license:expat license:asl2.0)))) + |