diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 00:35:59 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:20 +0200 |
commit | c66357f961980841031d54275106e57f2de24f0b (patch) | |
tree | 9b3f6091dd84cf08ad6af539951c4e837083f90e /gnu/packages | |
parent | 9326d077ff07daa4ca1933793fb5b283fa61b78d (diff) | |
download | guix-c66357f961980841031d54275106e57f2de24f0b.tar.gz guix-c66357f961980841031d54275106e57f2de24f0b.zip |
gnu: Add texlive-kblocks.
* gnu/packages/tex.scm (texlive-kblocks): New variable.
Diffstat (limited to 'gnu/packages')
-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 7368c5ad42..c7204408f6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17624,6 +17624,26 @@ Using this package you can draw a game tree as easily as drawing a game tree with pen and paper.") (license license:lppl1.3c))) +(define-public texlive-kblocks + (package + (name "texlive-kblocks") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/kblocks/" "tex/latex/kblocks/") + (base32 + "0x85k295bxn4b3i083qmfvjvz2nqrh1r4r6njn491lgsfymyc0pq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/kblocks") + (synopsis "Easily typeset control block diagrams and signal flow graphs") + (description + "Kblocks defines a number of commands to make drawing control block +diagrams using TikZ/PGF more structured and easier. It reduces the learning +curve for TikZ/PGF and serves as a frontend, by focusing on the block or flow +diagrams only.") + (license license:expat))) + (define-public texlive-qrcode (package (name "texlive-qrcode") |