summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-21 13:08:22 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-08-21 16:29:53 +0200
commitf273cf58439b6fc6800a28218749ba710e4594a7 (patch)
tree65ad06961e833235ab29ea221df09df57133b86e /gnu
parent7c2013dcc9acc7dec5152e0efd8d4eb143ce31b1 (diff)
gnu: Add texlive-wsuipa.
* gnu/packages/tex.scm (texlive-wsuipa): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/tex.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index f6f381d37ed..66c3bdf5f73 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -25983,6 +25983,35 @@ Native American languages.")
25983 "This package provides LaTeX support for the @code{wnri} fonts.") 25983 "This package provides LaTeX support for the @code{wnri} fonts.")
25984 (license license:gpl2))) 25984 (license license:gpl2)))
25985 25985
25986(define-public texlive-wsuipa
25987 (package
25988 (name "texlive-wsuipa")
25989 (version (number->string %texlive-revision))
25990 (source (texlive-origin
25991 name version
25992 (list "doc/fonts/wsuipa/"
25993 "fonts/source/public/wsuipa/"
25994 "fonts/tfm/public/wsuipa/"
25995 "tex/latex/wsuipa/")
25996 (base32
25997 "0gj7d68gb82dxmrbz69ibgpw2q2h6sb22k8nl569r27m2sli60jy")))
25998 (outputs '("out" "doc"))
25999 (build-system texlive-build-system)
26000 ;; FIXME: Font metrics generation fails with "! Strange path (turning
26001 ;; number is zero)" error.
26002 (arguments
26003 (list #:phases
26004 #~(modify-phases %standard-phases
26005 (delete 'generate-font-metrics))))
26006 (native-inputs (list texlive-metafont))
26007 (home-page "https://ctan.org/pkg/wsuipa")
26008 (synopsis "International Phonetic Alphabet fonts")
26009 (description
26010 "The package provides a 7-bit IPA font, as Metafont source, and macros
26011for support under TeXt1 and LaTeX. The fonts (and macros) are now largely
26012superseded by the @code{tipa} fonts.")
26013 (license license:knuth)))
26014
25986(define-public texlive-xcite 26015(define-public texlive-xcite
25987 (package 26016 (package
25988 (name "texlive-xcite") 26017 (name "texlive-xcite")