From 624056ff53cc3b86ef180065a17e0c85972464e4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:43:57 +0200 Subject: [PATCH] gnu: Add texlive-askinclude. * gnu/packages/tex.scm (texlive-askinclude): 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 a2e2ba7fd5..cd78357187 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73150,6 +73150,27 @@ (define-public texlive-asciilist environments and the appearance of the typeset results.") (license license:lppl1.2+))) +(define-public texlive-askinclude + (package + (name "texlive-askinclude") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/askinclude/" + "source/latex/askinclude/" + "tex/latex/askinclude/") + (base32 + "0bygb2xlxmazjv3ihag1j4xa8mdrj6n3wmrf0qsz8fksfajxmxks"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/askinclude") + (synopsis "Interactive use of @code{\\includeonly}") + (description + "The package asks the user which files to put in a @code{\\includeonly} +command. There is provision for answering ``same as last time'' or ``all +files''.") + (license license:lppl1.3+))) + ;;; ;;; 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