From 8e9133cc680d08d8aef3a0d5f48e06a1a6039d61 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 12 Jul 2023 21:53:46 +0200 Subject: [PATCH] gnu: Add texlive-blox. * gnu/packages/tex.scm (texlive-blox): New variable. --- gnu/packages/tex.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9023025209..33bc3c25e7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16289,6 +16289,36 @@ within a @code{tikzpicture} environment by setting the environment option diagrams (specially in power electronics).") (license license:lppl1.3+))) +(define-public texlive-blox + (package + (name "texlive-blox") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/blox/" "source/latex/blox/" + "tex/latex/blox/") + (base32 + "0xkv6rvkbchkwgfam5kiymng0xnc4vja5xb3b5d89rngdr041xwk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (native-inputs + (list (texlive-updmap.cfg + (list texlive-fancyvrb + texlive-hypdoc + texlive-hyperref + texlive-infwarerr + texlive-kvoptions + texlive-pgf + texlive-tools)))) + (home-page "https://ctan.org/pkg/blox") + (synopsis "Draw block diagrams, using TikZ") + (description + "This package, along with TikZ, will typeset block diagrams for use with +programming and control theory. It is an English translation of the +@code{schemabloc} package.") + (license license:lppl1.3+))) + (define-public texlive-gates (package (name "texlive-gates")