diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-10 09:25:44 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:44 +0200 |
commit | fe6504c5a27199fea1093c5676a788d952e37fed (patch) | |
tree | d588226389b32d64d3b2c51fb63e90224e3a0b0f /gnu/packages/tex.scm | |
parent | 98b73ff6c9551609d82d93f7864d1b98784c7cf4 (diff) | |
download | guix-fe6504c5a27199fea1093c5676a788d952e37fed.tar.gz guix-fe6504c5a27199fea1093c5676a788d952e37fed.zip |
gnu: Add texlive-variations.
* gnu/packages/tex.scm (texlive-variations): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d660e44727..972ee8f701 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11093,6 +11093,26 @@ analytical expansion of sin and cos.") barcodes.") (license license:lppl))) +(define-public texlive-variations + (package + (name "texlive-variations") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/variations/" + "tex/generic/variations/") + (base32 + "1ad1yc1v32ds4wj36fql6fjiacziw4ynvw0rpj3x01k6jdvh44xh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/variations") + (synopsis "Typeset tables of variations of functions") + (description + "The package provides macros for typesetting tables showing variations of +functions according to French usage. These macros may be used by both LaTeX +and plain TeX users.") + (license license:gpl3+))) + (define-public texlive-varisize (package (name "texlive-varisize") |