diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-14 10:19:45 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:05:20 +0200 |
commit | 9882239915b406635a25e092ab4ed4f0b6a3492f (patch) | |
tree | 454050e3c427a49b4915f1c7a800fa9ece0402e4 /gnu/packages/crates-apple.scm | |
parent | 41ff532796c091a6d54746129435943b7adbe1ef (diff) | |
download | guix-9882239915b406635a25e092ab4ed4f0b6a3492f.tar.gz guix-9882239915b406635a25e092ab4ed4f0b6a3492f.zip |
gnu: Add rust-objc2-cloud-kit-0.2.
* gnu/packages/crates-apple.scm (rust-objc2-cloud-kit-0.2): New
variable.
Change-Id: I33c3582dc64100d648e5df3de54a1d110ba5a0fd
Diffstat (limited to 'gnu/packages/crates-apple.scm')
-rw-r--r-- | gnu/packages/crates-apple.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/crates-apple.scm b/gnu/packages/crates-apple.scm index 101a33915f..7ee9afc8a1 100644 --- a/gnu/packages/crates-apple.scm +++ b/gnu/packages/crates-apple.scm @@ -1253,6 +1253,32 @@ the Cocoa Foundation framework.") "This package provides bindings to the @code{AppKit} framework.") (license license:expat))) +(define-public rust-objc2-cloud-kit-0.2 + (package + (name "rust-objc2-cloud-kit") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "objc2-cloud-kit" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02dhjvmcq8c2bwj31jx423jygif1scs9f0lmlab0ayhw75b3ppbl")))) + (build-system cargo-build-system) + (arguments + ;; Must specify the desired runtime using Cargo features on non-Apple platforms + `(#:skip-build? #t + #:cargo-inputs (("rust-bitflags" ,rust-bitflags-2) + ("rust-block2" ,rust-block2-0.5) + ("rust-objc2" ,rust-objc2-0.5) + ("rust-objc2-core-location" ,rust-objc2-core-location-0.2) + ("rust-objc2-foundation" ,rust-objc2-foundation-0.2)))) + (home-page "https://github.com/madsmtm/objc2") + (synopsis "Bindings to the CloudKit framework") + (description + "This package provides bindings to the @code{CloudKit} framework.") + (license license:expat))) + (define-public rust-objc2-encode-4 (package (name "rust-objc2-encode") |