diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-04 11:38:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:16 +0200 |
commit | 3a850afd75d16b58aa80dd63bf8e7890a99b3442 (patch) | |
tree | 7d2a1399d066bbfb30cf4d532edb7f51bbe782e0 /gnu | |
parent | 7c0ca8826f6714d9297ed3f6145e8580662cc0d1 (diff) | |
download | guix-3a850afd75d16b58aa80dd63bf8e7890a99b3442.tar.gz |
gnu: Add rust-core-text-20.
* gnu/packages/crates-io.scm (rust-core-text-20): New variable. (rust-core-text-19): Inherit from rust-core-text-20. Change-Id: I1165f4cec81c848b4f7d8c5e38999df336b42a99
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 575a8645d1..b3dfbfaf0a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -15169,8 +15169,32 @@ intrinsics.") #:cargo-inputs (("rust-libc" ,rust-libc-0.2)))))) +(define-public rust-core-text-20 + (package + (name "rust-core-text") + (version "20.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "core-text" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1mffma8w0ic11ydv6zclamw4dslzmsych1fwz14msih8bh5pkln9")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t ; link kind `framework` is only supported on Apple targets + #:cargo-inputs (("rust-core-foundation" ,rust-core-foundation-0.9) + ("rust-core-graphics" ,rust-core-graphics-0.23) + ("rust-foreign-types" ,rust-foreign-types-0.5) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/servo/core-foundation-rs") + (synopsis "Bindings to the Core Text framework") + (description "This package provides bindings to the Core Text framework.") + (license (list license:expat license:asl2.0)))) + (define-public rust-core-text-19 (package + (inherit rust-core-text-20) (name "rust-core-text") (version "19.1.0") (source @@ -15180,18 +15204,13 @@ intrinsics.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0q1sr55v8zq82y0dwnwwksz1radh515i0a45nbsda3w2idpg9iyj")))) - (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-core-foundation" ,rust-core-foundation-0.9) ("rust-core-graphics" ,rust-core-graphics-0.22) ("rust-foreign-types" ,rust-foreign-types-0.3) - ("rust-libc" ,rust-libc-0.2)))) - (home-page "https://github.com/servo/core-foundation-rs") - (synopsis "Bindings to the Core Text framework") - (description "This package provides bindings to the Core Text framework.") - (license (list license:expat license:asl2.0)))) + ("rust-libc" ,rust-libc-0.2)))))) (define-public rust-cov-mark-2 (package |