diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-14 10:24:13 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:05:21 +0200 |
commit | 8fc17cf91c45fa907a54c13b0bc43c07cdce78f5 (patch) | |
tree | 421fa0e995da4e5cf0cef4a5cc9b56857eb22ddf | |
parent | 3eadf0b8737506dd90038f2cf4aac8ed4f6784b7 (diff) | |
download | guix-8fc17cf91c45fa907a54c13b0bc43c07cdce78f5.tar guix-8fc17cf91c45fa907a54c13b0bc43c07cdce78f5.tar.gz |
gnu: Add rust-objc2-uniform-type-identifiers-0.2.
* gnu/packages/crates-apple.scm (rust-objc2-uniform-type-identifiers-0.2):
New variable.
Change-Id: Id08bb59c082392e5d56039890d8d19d157f8a36d
-rw-r--r-- | gnu/packages/crates-apple.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-apple.scm b/gnu/packages/crates-apple.scm index 13db9cca7c..fd62d1c34c 100644 --- a/gnu/packages/crates-apple.scm +++ b/gnu/packages/crates-apple.scm @@ -1517,6 +1517,30 @@ the Cocoa Foundation framework.") (description "This package provides procedural macros for the objc2 project.") (license license:expat))) +(define-public rust-objc2-uniform-type-identifiers-0.2 + (package + (name "rust-objc2-uniform-type-identifiers") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "objc2-uniform-type-identifiers" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1ziv4wkbxcaw015ypg0q49ycl7m14l3x56mpq2k1rznv92bmzyj4")))) + (build-system cargo-build-system) + (arguments + ;; Must specify the desired runtime using Cargo features on non-Apple platforms + `(#:skip-build? #t + #:cargo-inputs (("rust-block2" ,rust-block2-0.5) + ("rust-objc2" ,rust-objc2-0.5) + ("rust-objc2-foundation" ,rust-objc2-foundation-0.2)))) + (home-page "https://github.com/madsmtm/objc2") + (synopsis "Bindings to the UniformTypeIdentifiers framework") + (description + "This package provides bindings to the @code{UniformTypeIdentifiers} framework.") + (license license:expat))) + (define-public rust-objc2-user-notifications-0.2 (package (name "rust-objc2-user-notifications") |