From 8065b2b4336dbd23b4cd20bc601c31c2c4d70cb2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:43:55 +0200 Subject: [PATCH] gnu: Add texlive-arydshln. * gnu/packages/tex.scm (texlive-arydshln): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8619267d17..e0789d2255 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -73101,6 +73101,29 @@ the @code{arrayjob} package.") the arrays should have been created using the @code{arrayjobx} package.") (license license:lppl1.2+))) +(define-public texlive-arydshln + (package + (name "texlive-arydshln") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/arydshln/" + "source/latex/arydshln/" + "tex/latex/arydshln/") + (base32 + "0zhn8fq92ghkci457qmls90yd2q55zfgqd6rxyhzl5nsfhamcrvh"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/arydshln") + (synopsis "Draw dash-lines in array/tabular") + (description + "The package is to draw dash-lines in @code{array} and @code{tabular} +environments. Horizontal lines are drawn by @code{\\hdashline} and +@code{\\cdashline} while vertical ones can be specified as a part of the +preamble using @samp{:}. The shape of dash-lines may be controlled through +style parameters or optional arguments.") + (license license:lppl1.0+))) + ;;; ;;; 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