From c83ca2d3791208916514b90befb71cb1c07353f2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:57:07 +0200 Subject: [PATCH] gnu: Add texlive-oldstyle. * gnu/packages/tex.scm (texlive-oldstyle): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3aed31ff49..ea6ee0febf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -90748,6 +90748,26 @@ show) or disable (to hide) OCGs.") documents.") (license license:gpl3+))) +(define-public texlive-oldstyle + (package + (name "texlive-oldstyle") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/oldstyle/" + "source/latex/oldstyle/" + "tex/latex/oldstyle/") + (base32 + "0lrjr8w54m2ab9a8l1vigjdlsbg21lh0nl9kyyhpn6xgpi16ph1p"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/oldstyle") + (synopsis "Old style numbers in OT1 encoding") + (description + "This package provides font information needed to load the @code{cmmi} and +@code{cmmib} fonts for use to produce old-style numbers.") + (license license:lppl))) + ;;; ;;; 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