diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:29:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:55 +0200 |
commit | 145e0bdca38d52a0a25360dab70bfd9c0b52f5c0 (patch) | |
tree | b114b235e4da353933a11e1c172670a9149b57ee /gnu/packages | |
parent | 74bac527877274d37aa5e1069dff69ce87d3ce51 (diff) | |
download | guix-145e0bdca38d52a0a25360dab70bfd9c0b52f5c0.tar.gz guix-145e0bdca38d52a0a25360dab70bfd9c0b52f5c0.zip |
gnu: Add texlive-mathlig.
* gnu/packages/tex.scm (texlive-mathlig): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a67e3d42ae..42c19970fe 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4540,6 +4540,24 @@ spacing around fractions and roots, math symbols within bold text as well as capital Greek letters. It also adds some related macros.") (license license:lppl1.3+))) +(define-public texlive-mathlig + (package + (name "texlive-mathlig") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/generic/mathlig/") + (base32 + "0pyaqwr2h9knxf1axi55vm6wr9xj15d5j5pagb2011k3b830f91b"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mathlig") + (synopsis "Define maths ligatures") + (description + "The package defines character sequences that behave like ligatures, in +maths mode.") + ;; The license is basically CC-BY. + (license (license:fsf-free "file://tex/generic/mathlig/mathlig.tex")))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |