diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-17 18:26:17 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-19 20:33:14 +0200 |
commit | 475ee754f4cc3430e88fde2271d9cc622ac21285 (patch) | |
tree | 019550423a932a2a3b30ad0454c099931ec0e055 | |
parent | cf232f29b66029106203337fccf0075ef02b2c9f (diff) | |
download | guix-475ee754f4cc3430e88fde2271d9cc622ac21285.tar.gz guix-475ee754f4cc3430e88fde2271d9cc622ac21285.zip |
gnu: Add texlive-beebe.
* gnu/packages/tex.scm (texlive-beebe): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0015a09304..57c83c2563 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3043,6 +3043,24 @@ issues of numbers in Basque.") It may use either TikZ or PSTricks as graphics engine.") (license license:lppl1.3+))) +(define-public texlive-beebe + (package + (name "texlive-beebe") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bib/beebe/" "tex/generic/beebe/") + (base32 + "060v67ma1r6n9fmg4v4zl2pgxz6gmd4qrazyss9hwq6z4206pqc0"))) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/biblio") + (synopsis "Collection of bibliographies") + (description + "This package provides a collection of BibTeX bibliographies on +TeX-related topics (including, for example, spell-checking and SGML). Each +includes a LaTeX wrapper file to typeset the bibliography.") + (license license:public-domain))) + (define-public texlive-begingreek (package (name "texlive-begingreek") |