me
/
guix
Archived
1
0
Fork 0

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.
master
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
1 changed files with 25 additions and 6 deletions

View File

@ -12285,8 +12285,32 @@ values to other threads.")
"Bindings for Freetype used by Servo.") "Bindings for Freetype used by Servo.")
(license (list license:asl2.0 license:expat)))) (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 (define-public rust-freetype-rs-0.23
(package (package
(inherit rust-freetype-rs-0.26)
(name "rust-freetype-rs") (name "rust-freetype-rs")
(version "0.23.0") (version "0.23.0")
(source (source
@ -12298,7 +12322,6 @@ values to other threads.")
(sha256 (sha256
(base32 (base32
"06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd")))) "06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd"))))
(build-system cargo-build-system)
(arguments (arguments
`(#:cargo-inputs `(#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1) (("rust-bitflags" ,rust-bitflags-1)
@ -12308,11 +12331,7 @@ values to other threads.")
(("rust-unicode-normalization" ,rust-unicode-normalization-0.1)))) (("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))
(inputs (inputs
`(("freetype" ,freetype) `(("freetype" ,freetype)
("zlib" ,zlib))) ("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)))
(define-public rust-freetype-sys-0.13 (define-public rust-freetype-sys-0.13
(package (package