From 5e3a351ba1d1c754494523ca74591a3da024d9af Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:04:03 +0200 Subject: [PATCH] gnu: Add texlive-unicodefonttable. * gnu/packages/tex.scm (texlive-unicodefonttable): New variable. --- gnu/packages/tex.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index dabd474652..8468b7e250 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98948,6 +98948,30 @@ (define-public texlive-uni-titlepage elements.") (license license:lppl1.3c))) +(define-public texlive-unicodefonttable + (package + (name "texlive-unicodefonttable") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/unicodefonttable/" + "source/latex/unicodefonttable/" + "tex/latex/unicodefonttable/") + (base32 + "1r1z89bcc48kzz4sms1sp0gvbrssq5s949b5srcyf2rmw1a4g93f"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/unicodefonttable") + (synopsis "Unicode font table generator") + (description + "This package produces font tables for Unicode fonts as well as for 8-bit fonts. +The table layout can be adjusted in various ways including restricting the +range of output to show only a portion of a specific font. To quickly produce +a one-off table there is a stand-alone version @file{unicodefont.tex} that +asks you a few questions and then generates the table --- somewhat similar to +@file{nfssfont.tex} for 8-bit fonts.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar