me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-owned-ttf-parser-0.6.

* gnu/packages/crates-io.scm (rust-owned-ttf-parser-0.6): New variable.
master
Nicolas Goaziou 2021-01-29 23:40:02 +01:00
parent d21bf67b6f
commit 2c551e714d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -23176,6 +23176,28 @@ under its new name.")
"Utility to activate escape codes in Windows' CMD and PowerShell.")
(license license:expat)))
(define-public rust-owned-ttf-parser-0.6
(package
(name "rust-owned-ttf-parser")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "owned_ttf_parser" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1qydjksjcllf0pnm0jkjvbg4n52wfcwv59dl5b06cqn40sw3z4lz"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-ttf-parser" ,rust-ttf-parser-0.6))))
(home-page "https://github.com/alexheretic/owned-ttf-parser")
(synopsis "TTF-parser plus support for owned data")
(description
"This package provides a TTF-parser plus support for owned data.")
(license license:asl2.0)))
(define-public rust-owning-ref-0.4
(package
(name "rust-owning-ref")