me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-freetype-rs-0.23.

* gnu/packages/crates-io.scm (rust-freetype-rs-0.23): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-19 02:18:59 +03:00 committed by Efraim Flashner
parent 1ed6022287
commit 6be9107582
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 0 deletions

View File

@ -4302,6 +4302,35 @@ implementation that is more efficient for smaller hash keys.")
(base32
"0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"))))))
(define-public rust-freetype-rs-0.23
(package
(name "rust-freetype-rs")
(version "0.23.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "freetype-rs" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bitflags" ,rust-bitflags-1)
("rust-freetype-sys" ,rust-freetype-sys-0.9)
("rust-libc" ,rust-libc-0.2))
#:cargo-development-inputs
(("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)))
(define-public rust-freetype-sys-0.9
(package
(name "rust-freetype-sys")