diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:14:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:03 +0200 |
commit | fe59ea88d770a05d75b0cd8617efcc7f8462e872 (patch) | |
tree | 14af85db1753b9534170561c36e503599629a732 | |
parent | f380d8cc7aaebc3a218c740a15d64a854126170a (diff) | |
download | guix-fe59ea88d770a05d75b0cd8617efcc7f8462e872.tar.gz |
gnu: Add texlive-esrelation.
* gnu/packages/tex.scm (texlive-esrelation): 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 80ae28a043..fb0519f8f0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11415,6 +11415,31 @@ Heuristica, matching that of UtopiaStd.") by Michel Bovani.") (license (list license:silofl1.1 license:lppl1.3+)))) +(define-public texlive-esrelation + (package + (name "texlive-esrelation") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/esrelation/" + "fonts/map/dvips/esrelation/" + "fonts/source/public/esrelation/" + "fonts/tfm/public/esrelation/" + "fonts/type1/public/esrelation/" + "source/fonts/esrelation/" + "tex/latex/esrelation/") + (base32 + "168pjrn3pgyqb79nvwk4rykb214jj1fvygnlb18rx7nrnzdmagjw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/esrelation") + (synopsis "Symbol set for describing relations between ordered pairs") + (description + "This package provides an math symbol font, by Tauba Auerbach, for +describing relations between ordered pairs, using Metafont.") + (license license:lppl1.3+))) + (define-public texlive-euclideangeometry (package (name "texlive-euclideangeometry") |