diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-12 08:23:53 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-15 11:34:58 +0000 |
commit | f2d55971453bd11f43c2734f91c42005ee314091 (patch) | |
tree | bb4944e8d44cf61b52df5739214327f424589bfe | |
parent | ce9b9e7cba87f648dff911d5c055e2a833c25c43 (diff) | |
download | guix-f2d55971453bd11f43c2734f91c42005ee314091.tar.gz |
gnu: Add texlive-fira.
* gnu/packages/tex.scm (texlive-fira): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5231840b26..3c174a3f80 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4138,6 +4138,31 @@ but non-expandable ones.") (define-public texlive-latex-filemod (deprecated-package "texlive-latex-filemod" texlive-filemod)) +(define-public texlive-fira + (package + (inherit (simple-texlive-package + "texlive-fira" + (list "doc/fonts/fira/" + "tex/latex/fira/" + "fonts/vf/public/fira/" + "fonts/type1/public/fira/" + "fonts/tfm/public/fira/" + "fonts/opentype/public/fira/" + "fonts/map/dvips/fira/" + "fonts/enc/dvips/fira/") + (base32 "0mxrwwf8i383vrs64lsyiwnai4cy305pkv1kgd4nrhmgi7pdc3ac") + #:trivial? #t)) + (build-system texlive-build-system) + (home-page "https://ctan.org/fonts/fira") + (synopsis "Fira fonts with LaTeX support") + (description + "This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for +the Fira Sans family of fonts designed by Erik Spiekermann and Ralph du +Carrois of Carrois Type Design. Fira Sans is available in eleven weights with +corresponding italics: light, regular, medium, bold, ...") + (license (list license:lppl + license:silofl1.1)))) + (define-public texlive-latex-ifplatform (package (name "texlive-latex-ifplatform") |