gnu: Add rust-ttf-parser-0.17.

* gnu/packages/crates-io.scm (rust-ttf-parser-0.17): New variable.

Change-Id: Ibf3710124f1f9fca6ad4eee9840a8d554849a88e
This commit is contained in:
Efraim Flashner 2024-04-01 13:32:00 +03:00
parent 2774642f07
commit 705b099607
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -83897,6 +83897,22 @@ (define-public rust-ttf-parser-0.19
parser.")
(license (list license:expat license:asl2.0))))
(define-public rust-ttf-parser-0.17
(package
(inherit rust-ttf-parser-0.19)
(name "rust-ttf-parser")
(version "0.17.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ttf-parser" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zrbcjmyz3280wlbdbxskz0gd25lxizjzkcmq50xzdns8kx14n1p"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t)))) ; Cut the dependency graph.
(define-public rust-ttf-parser-0.12
(package
(inherit rust-ttf-parser-0.19)