diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:22:30 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:16 +0200 |
commit | ded623d244296fafcab56dcfdbb4771406bc0e7e (patch) | |
tree | f5df151d11be14193536413dc44b8e1ae08f69e2 /gnu/packages | |
parent | 7d40a10a0e9f779d79a1f27635629b0cd71109be (diff) | |
download | guix-ded623d244296fafcab56dcfdbb4771406bc0e7e.tar.gz |
gnu: Add texlive-metafont-beginners.
* gnu/packages/tex.scm (texlive-metafont-beginners): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c7e5bbe10d..dc82ebd3ae 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5233,6 +5233,26 @@ decorate those diagrams, for instance to annotate the diagram, to add crashes to the processes, checkpoints, ...") (license license:lppl1.3+))) +(define-public texlive-metafont-beginners + (package + (name "texlive-metafont-beginners") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/metafont-beginners/") + (base32 + "12hhvlnvh8dj1396242m6yi0341cina7sxrv7pwzqxzzahwdvmgm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/metafont-beginners") + (synopsis "Introductory tutorial for Metafont") + (description + "This package provides an old introduction to the use of Metafont, that +has stood the test of time. It focuses on using the program, rather than +designing fonts, but does offer advice about understanding errors in other +people's fonts.") + (license license:public-domain))) + (define-public texlive-mgltex (package (name "texlive-mgltex") |