diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:31:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:49 +0200 |
commit | 258879226ff28a320e100513bf443eba7b7b5fb2 (patch) | |
tree | c66427557d8d9470cdb161bdf1fdf1fe1ab3c416 /gnu | |
parent | 48e6adaeb15a11ccda91b2e99506bece37cee792 (diff) | |
download | guix-258879226ff28a320e100513bf443eba7b7b5fb2.tar.gz guix-258879226ff28a320e100513bf443eba7b7b5fb2.zip |
gnu: Add texlive-tikz-bayesnet.
* gnu/packages/tex.scm (texlive-tikz-bayesnet): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index acc6653737..8e9d9d767f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4234,6 +4234,26 @@ or Zhouyi using TikZ. There is no need for extra special fonts for showing these symbols.") (license license:lppl1.3c))) +(define-public texlive-tikz-bayesnet + (package + (name "texlive-tikz-bayesnet") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikz-bayesnet/" + "tex/latex/tikz-bayesnet/") + (base32 + "0fmm93h0kl6q45sglfz1ssrnj20sqds9kvamf1dqzmfw2g77qwqr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikz-bayesnet") + (synopsis + "Draw Bayesian networks, graphical models and directed factor graphs") + (description + "The package provides a library supporting the display of Bayesian networks, +graphical models and (directed) factor graphs in LaTeX.") + (license license:lppl1.3+))) + (define-public texlive-amiri (package (name "texlive-amiri") |