diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:17:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:06 +0200 |
commit | 9512d87387e9f0fdda363dd07e2528636373c089 (patch) | |
tree | 4b23a02a1e46e5564c1fc9c59acd6b5dc9ff77a2 | |
parent | 0d9782d9dc104b9587b5a981f0f0f1f2cbc5a167 (diff) | |
download | guix-9512d87387e9f0fdda363dd07e2528636373c089.tar.gz guix-9512d87387e9f0fdda363dd07e2528636373c089.zip |
gnu: Add texlive-fonetika.
* gnu/packages/tex.scm (texlive-fonetika): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 20b348e052..2e2bfd9bd5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12191,6 +12191,33 @@ spaces, operators, physics unit, etc.") support for its use.") (license license:gpl3+))) +(define-public texlive-fonetika + (package + (name "texlive-fonetika") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/fonetika/" + "fonts/afm/public/fonetika/" + "fonts/map/dvips/fonetika/" + "fonts/tfm/public/fonetika/" + "fonts/truetype/public/fonetika/" + "fonts/type1/public/fonetika/" + "tex/latex/fonetika/") + (base32 + "1d19a9v3innfq9602w8rd2ffn0yd52fz4wmdva6qnix0jgadc1ka"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fonetika") + (synopsis "Support for the Danish Dania phonetic system") + (description + "Fonetika Dania is a font bundle with a serif font and a sans serif font +for the Danish phonetic system Dania. Both fonts exist in regular and bold +weights. LaTeX support is provided.") + ;; The license is GPL3+, except for the fonts and metrics of the Fonetika + ;; Dania Iwonae, which are under GUST Font Nosource License. + (license (list license:gpl3+ license:gfl1.0)))) + (define-public texlive-fontsize (package (name "texlive-fontsize") |