guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

26/422: gnu: Add rust-freetype-rs-0.35.


From: guix-commits
Subject: 26/422: gnu: Add rust-freetype-rs-0.35.
Date: Wed, 6 Nov 2024 04:01:15 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit d8bb8ed4ec001994863644eced8e3ccc694e645f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Sep 18 14:35:50 2024 +0300

    gnu: Add rust-freetype-rs-0.35.
    
    * gnu/packages/crates-io.scm (rust-freetype-rs-0.35): New variable.
    (rust-freetype-rs-0.32): Inherit from rust-freetype-rs-0.35.
    
    Change-Id: I43d96b8daa51bf837f7b26ed4a895a12a6b5ae3e
---
 gnu/packages/crates-io.scm | 33 ++++++++++++++++++++++++++-------
 1 file changed, 26 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f479eb821f..ba3fb4bb99 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -27757,23 +27757,22 @@ values to other threads.")
     (description "This package provides bindings for Freetype used by Servo.")
     (license (list license:asl2.0 license:expat))))
 
-(define-public rust-freetype-rs-0.32
+(define-public rust-freetype-rs-0.35
   (package
     (name "rust-freetype-rs")
-    (version "0.32.0")
+    (version "0.35.0")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "freetype-rs" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1q54jimjgzwdb3xsp7rsvdmp6w54cak7bvc379mdabc2ciz3776m"))))
+        (base32 "1gzfb9fax3d3s691ys99nfihpzwl7hacvxnwvlxg4sph1fzd5ymi"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:cargo-inputs
-       (("rust-bitflags" ,rust-bitflags-1)
-        ("rust-freetype-sys" ,rust-freetype-sys-0.17)
-        ("rust-libc" ,rust-libc-0.2))
+     `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
+                       ("rust-freetype-sys" ,rust-freetype-sys-0.20)
+                       ("rust-libc" ,rust-libc-0.2))
        #:cargo-development-inputs
        (("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))
     (inputs
@@ -27783,6 +27782,26 @@ values to other threads.")
     (description "This package provides bindings for FreeType font library.")
     (license license:expat)))
 
+(define-public rust-freetype-rs-0.32
+  (package
+    (inherit rust-freetype-rs-0.35)
+    (name "rust-freetype-rs")
+    (version "0.32.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "freetype-rs" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1q54jimjgzwdb3xsp7rsvdmp6w54cak7bvc379mdabc2ciz3776m"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-bitflags" ,rust-bitflags-1)
+        ("rust-freetype-sys" ,rust-freetype-sys-0.17)
+        ("rust-libc" ,rust-libc-0.2))
+       #:cargo-development-inputs
+       (("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))))
+
 (define-public rust-freetype-rs-0.26
   (package
     (inherit rust-freetype-rs-0.32)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]