diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:26:27 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:16 +0200 |
commit | 7ad664d771aa249e8afbe91101a8604c70d3e79d (patch) | |
tree | 4c1c219cad3827f40e00203efa02ca4544247d6d /gnu/packages/tex.scm | |
parent | ebade8f9964498e8d23739680ae466debe968ea9 (diff) | |
download | guix-7ad664d771aa249e8afbe91101a8604c70d3e79d.tar.gz |
gnu: Add texlive-ifsym.
* gnu/packages/tex.scm (texlive-ifsym): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c8cf1b9184..78c0261a22 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -14710,6 +14710,30 @@ which are called indices locorum citatorum. It relies on a specific files.") (license license:expat))) +(define-public texlive-ifsym + (package + (name "texlive-ifsym") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/ifsym/" + "fonts/source/public/ifsym/" + "fonts/tfm/public/ifsym/" "tex/latex/ifsym/") + (base32 + "07r16sgqc65wf8c8ijgmnmwq50yrlvjlmzbnk0czgnwqrbdz642g"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/ifsym") + (synopsis "Collection of symbols") + (description + "This package provides a set of symbol fonts, written in Metafont, offering +(respectively) clock-face symbols, geometrical symbols, weather symbols, +mountaineering symbols, electronic circuit symbols and a set of miscellaneous +symbols. A LaTeX package is provided, that allows the user to load only those +symbols needed in a document.") + (license license:lppl1.0+))) + (define-public texlive-ijqc (package (name "texlive-ijqc") |