diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-10-19 23:44:54 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-10-20 00:03:40 +0200 |
commit | 223c44734975c29d134005ba020107492a1b2bd5 (patch) | |
tree | 0d12af54532812f00349f9dcb914acca604c8159 /gnu/packages/tex.scm | |
parent | 40557391ab7e9c21e24f0fb2cc925c0f2b03f4d5 (diff) | |
download | guix-223c44734975c29d134005ba020107492a1b2bd5.tar guix-223c44734975c29d134005ba020107492a1b2bd5.tar.gz |
gnu: Add texlive-dejavu.
* gnu/packages/tex.scm (texlive-dejavu): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b799ef1773..1cffb52410 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5383,6 +5383,35 @@ The package supersedes both the @code{libertineotf} and the license:silofl1.1 license:lppl)))) +(define-public texlive-dejavu + (package + (inherit (simple-texlive-package + "texlive-dejavu" + (list "/doc/fonts/dejavu/" + + "/fonts/enc/dvips/dejavu/" + "/fonts/map/dvips/dejavu/" + + "/fonts/afm/public/dejavu/" + "/fonts/tfm/public/dejavu/" + "/fonts/truetype/public/dejavu/" + "/fonts/type1/public/dejavu/" + "/fonts/vf/public/dejavu/" + + "/tex/latex/dejavu/") + (base32 + "0y4qf5jl0xncah9nkcaalmy69wwq02n3j895zp71n2p0nfi24aka") + #:trivial? #t)) + (home-page "https://www.ctan.org/pkg/libertine") + (synopsis "LaTeX support for the DejaVu fonts") + (description + "The package contains LaTeX support for the DejaVu fonts, which are +derived from the Vera fonts but contain more characters and styles. The fonts +are included in the original TrueType format, and in converted Type 1 format. +The (currently) supported encodings are: OT1, T1, IL2, TS1, T2*, X2, QX, and +LGR. The package doesn't (currently) support mathematics.") + (license license:lppl))) + (define-public texlive-latex-titlesec (package (name "texlive-latex-titlesec") |