From f5b2716f6b083d6f6af49fa83654c5b92c15f517 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 4 Aug 2023 12:06:20 +0200 Subject: [PATCH] gnu: Add texlive-docsurvey. * gnu/packages/tex.scm (texlive-docsurvey): 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 ca3e81bfd1..55ef3e1bb6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7671,6 +7671,27 @@ Books included are: @end itemize") (license license:fdl1.3+))) +(define-public texlive-docsurvey + (package + (name "texlive-docsurvey") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/docsurvey/") + (base32 + "0f2kzmmpm7qwci04krmnz5impfwwmy2wwanmgq05878w8xbcqjj6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/docsurvey") + (synopsis "Survey of LaTeX documentation") + (description + "This package provides a survey of programming-related documentation for +LaTeX. Included are references to printed and electronic books and manuals, +symbol lists, FAQs, the LaTeX source code, CTAN and distributions, +programming-related packages, users groups and online communities, and +information on creating packages and documentation.") + (license license:lppl1.3+))) + (define-public texlive-dtl (package (name "texlive-dtl")