gnu: Add rust-freetype-rs-0.26.

* gnu/packages/crates-io.scm (rust-freetype-rs-0.26): New variable.
(rust-freetype-rs-0.23): Inherit from above.
This commit is contained in:
Nicolas Goaziou 2021-01-29 23:21:14 +01:00
parent dc97101174
commit 23ce3b904b
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -12285,8 +12285,32 @@ (define-public rust-freetype-0.4
"Bindings for Freetype used by Servo.")
(license (list license:asl2.0 license:expat))))
(define-public rust-freetype-rs-0.26
(package
(name "rust-freetype-rs")
(version "0.26.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "freetype-rs" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1yzmbd73hlblbns0dqkcwfj54l97hx3yb0lqpda8rhm5s34xxskl"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
("rust-freetype-sys" ,rust-freetype-sys-0.13)
("rust-libc" ,rust-libc-0.2))))
(home-page "https://github.com/PistonDevelopers/freetype-rs")
(synopsis "Bindings for FreeType font library")
(description "This package provides bindings for FreeType font library.")
(license license:expat)))
(define-public rust-freetype-rs-0.23
(package
(inherit rust-freetype-rs-0.26)
(name "rust-freetype-rs")
(version "0.23.0")
(source
@ -12298,7 +12322,6 @@ (define-public rust-freetype-rs-0.23
(sha256
(base32
"06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
@ -12308,11 +12331,7 @@ (define-public rust-freetype-rs-0.23
(("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))
(inputs
`(("freetype" ,freetype)
("zlib" ,zlib)))
(home-page "https://github.com/PistonDevelopers/freetype-rs")
(synopsis "Bindings for FreeType font library")
(description "This package provides bindings for FreeType font library.")
(license license:expat)))
("zlib" ,zlib)))))
(define-public rust-freetype-sys-0.13
(package