From f2008ecedf0e5dc0979ea16b75a7b1cce8c5108b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:12 +0200 Subject: [PATCH] gnu: Add texlive-directory. * gnu/packages/tex.scm (texlive-directory): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e9ecef7870..64b5d7fcae 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79111,6 +79111,27 @@ and indentation of successive key steps automatically.") mode.") (license license:lppl1.3+))) +(define-public texlive-directory + (package + (name "texlive-directory") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bib/directory/" + "bibtex/bst/directory/" + "doc/latex/directory/" + "tex/latex/directory/") + (base32 + "03h3vskri5hcvna92spvagig4na8pmr52jmdclis58d903pmm6wp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/directory") + (synopsis "Address book using BibTeX") + (description + "This package for LaTeX and BibTeX facilitates the construction, +maintenance and exploitation of an address book-like database.") + (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