diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:25:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:42 +0200 |
commit | 9ac99ba870404d5294227db6ba0d5446b0018c1f (patch) | |
tree | 9bb44d2f73a8b61d4c659b44ba8e1662515433b7 /gnu/packages | |
parent | e7887a20ee9455193a9934675415b6c4c80a45f2 (diff) | |
download | guix-9ac99ba870404d5294227db6ba0d5446b0018c1f.tar.gz guix-9ac99ba870404d5294227db6ba0d5446b0018c1f.zip |
gnu: Add texlive-schemabloc.
* gnu/packages/tex.scm (texlive-schemabloc): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c37145d4ec..5db77bd877 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3816,6 +3816,25 @@ reduction (Orch OR) theory of consciousness as applied to the three brains model of psychological experience. These symbols are prepared using TikZ.") (license license:lppl1.0+))) +(define-public texlive-schemabloc + (package + (name "texlive-schemabloc") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/schemabloc/" + "tex/latex/schemabloc/") + (base32 + "03kbriqlgxafxcy5l2215d3z874s4z1g5gg02w2ij0v8wjrgyn88"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/schemabloc") + (synopsis "Draw block diagrams, using TikZ") + (description + "The package provides a set of macros for constructing block diagrams, +using TikZ.") + (license license:lppl))) + (define-public texlive-amiri (package (name "texlive-amiri") |