From 3b6080ccb293e7ee6dcde61691e7dfadd3ba17b1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 14 Aug 2023 10:09:00 +0200 Subject: [PATCH] gnu: Add texlive-psbao. * gnu/packages/tex.scm (texlive-psbao): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c3e0f5a4ed..0350257af5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -40050,6 +40050,24 @@ The program has support for multilanguage pedigrees (at the present moment the English and Russian languages are supported).") (license license:gpl2))) +(define-public texlive-psbao + (package + (name "texlive-psbao") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/psbao/" "tex/latex/psbao/") + (base32 + "11gfnjvhrgic18s45pj6hn8slj9kmrmsrh4kqn83sfdxy2mr2y32"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/psbao") + (synopsis "Draw Bao diagrams") + (description + "The package draws Bao diagrams in LaTeX. The package is a development +of @code{psgo}, and uses PSTricks to draw the diagrams.") + (license license:lppl))) + (define-public texlive-pslatex (package (name "texlive-pslatex")