gnu: Add font-latin-modern.
* gnu/packages/fonts.scm (font-latin-modern): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
ceacf8e32f
commit
9cde566b9c
1 changed files with 21 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
||||||
;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
||||||
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
||||||
;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space>
|
;;; Copyright © 2022 Hilton Chain <hako@ultrarare.space>
|
||||||
|
;;; Copyright © 2022 Nguyễn Gia Phong <mcsinyx@disroot.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -732,6 +733,26 @@ following fonts in the OpenType format: Adventor, Bonum, Chorus, Cursor,
|
||||||
Heros, Pagella, Schola, Termes.")
|
Heros, Pagella, Schola, Termes.")
|
||||||
(license license:gfl1.0)))
|
(license license:gfl1.0)))
|
||||||
|
|
||||||
|
(define-public font-latin-modern
|
||||||
|
(package
|
||||||
|
(name "font-latin-modern")
|
||||||
|
(version "2.004")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri (string-append "https://www.gust.org.pl/projects/e-foundry/"
|
||||||
|
"latin-modern/download/lm" version "otf.zip"))
|
||||||
|
(sha256
|
||||||
|
(base32 "06qnvd6kh07gy2197vx3nmskhiqhp7ip9cpi2rkbwa1p3l2kc0jv"))))
|
||||||
|
(build-system font-build-system)
|
||||||
|
(home-page "https://www.gust.org.pl/projects/e-foundry/latin-modern")
|
||||||
|
(synopsis "OpenType fonts based on Computer Modern")
|
||||||
|
(description "The Latin Modern fonts are a set of scalable fonts based on
|
||||||
|
the PostScript Type 1 version of the Computer Modern fonts and contain many
|
||||||
|
additional characters (mostly accented ones). This package provides the
|
||||||
|
OpenType variant of these fonts.")
|
||||||
|
(license license:gfl1.0)))
|
||||||
|
|
||||||
(define-public font-amiri
|
(define-public font-amiri
|
||||||
(package
|
(package
|
||||||
(name "font-amiri")
|
(name "font-amiri")
|
||||||
|
|
Reference in a new issue