From 6f25d44e62ddf8069a913e16521733e6ca00976f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:10 +0200 Subject: [PATCH] gnu: Add texlive-dichokey. * gnu/packages/tex.scm (texlive-dichokey): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 37da19ee48..ce5655ba5f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79073,6 +79073,25 @@ that examines the installation is available.") to write macros to carry on a dialogue with the user.") (license license:lppl))) +(define-public texlive-dichokey + (package + (name "texlive-dichokey") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/dichokey/" "tex/latex/dichokey/") + (base32 + "0ncfxvkky0p0ff5bl378464zxvjdq3wg2acy0dmgvxh3zyc8925k"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/dichokey") + (synopsis "Construct dichotomous identification keys") + (description + "The package can be used to construct dichotomous identification keys (used +especially in biology for species identification), taking care of numbering +and indentation of successive key steps automatically.") + (license license:public-domain))) + ;;; ;;; 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