From 52f878ed1dbd912629abef62e1b149316fbd7812 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:49:57 +0200 Subject: [PATCH] gnu: Add texlive-fancynum. * gnu/packages/tex.scm (texlive-fancynum): 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 8233d95848..8190bf3041 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -81735,6 +81735,26 @@ a beautiful way.") the needs of the @code{chemschemex} package") (license license:lppl1.2+))) +(define-public texlive-fancynum + (package + (name "texlive-fancynum") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/fancynum/" + "source/latex/fancynum/" + "tex/latex/fancynum/") + (base32 + "15l6sq848pppcp67gg36y0aa2z7vhgxs59ggcpkgfck21g73i28a"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/fancynum") + (synopsis "Typeset numbers") + (description + "This package provides a LaTeX package for typesetting numbers, in particular +floating point numbers, such as you find in program output.") + (license license:lppl1.0+))) + ;;; ;;; 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