gnu: Add freetype-with-brotli.
* gnu/packages/fontutils.scm (freetype-with-brotli): New variable.
parent
a33a335c89
commit
49b0a5ee5f
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
;;; Copyright © 2022 Felipe Balbi <balbi@kernel.org>
|
;;; Copyright © 2022 Felipe Balbi <balbi@kernel.org>
|
||||||
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
||||||
|
;;; Copyright © 2023 John Kehayias <john.kehayias@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -124,6 +125,16 @@ anti-aliased glyph bitmap generation with 256 gray levels.")
|
||||||
(license license:freetype) ; some files have other licenses
|
(license license:freetype) ; some files have other licenses
|
||||||
(home-page "https://freetype.org/")))
|
(home-page "https://freetype.org/")))
|
||||||
|
|
||||||
|
;; TODO: Make this change directly in freetype in the next large rebuild cycle
|
||||||
|
;; and remove this package.
|
||||||
|
(define-public freetype-with-brotli
|
||||||
|
(package
|
||||||
|
(inherit freetype)
|
||||||
|
(name "freetype-with-brotli")
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs freetype)
|
||||||
|
(prepend brotli)))))
|
||||||
|
|
||||||
(define-public opentype-sanitizer
|
(define-public opentype-sanitizer
|
||||||
(package
|
(package
|
||||||
(name "opentype-sanitizer")
|
(name "opentype-sanitizer")
|
||||||
|
|
Reference in New Issue