diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 12:27:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:19 +0200 |
commit | 12123289d4a3643736142755302d27caeccb58f6 (patch) | |
tree | ccc3c6a73ee9d79c4b6fe6165935a1b190fca232 | |
parent | 6896cb4cadb327307aaeb78e8718cd2336a59fc7 (diff) | |
download | guix-12123289d4a3643736142755302d27caeccb58f6.tar.gz |
gnu: Add texlive-tex-refs.
* gnu/packages/tex.scm (texlive-tex-refs): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 442fc758a7..4214309533 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -25490,6 +25490,25 @@ gives a summary of plain TeX macros.") the macro packages LaTeX and ConTeXt.") (license license:lppl1.3+))) +(define-public texlive-tex-refs + (package + (name "texlive-tex-refs") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/tex-refs/") + (base32 + "1w7hcd3qsdhmb2siakjg2hm3h6kxa90ncsaif9spr4xkxs03ib6l"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tex-references") + (synopsis "References for TeX and Friends") + (description + "This is an ongoing project with the aim of providing a help file for +LaTeX (and its friends like ConTeXt, MetaPost, Metafont, etc.) using +DocBook/XML source format.") + (license license:fdl1.2+))) + (define-public texlive-threeparttable (package (name "texlive-threeparttable") |