diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:54:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:00 +0200 |
commit | 0c82699c6a72d5fa0a765088f225fc0b7c093f37 (patch) | |
tree | 37d80b33a79d0cb0f857859d0a6aad1e2dfe3cc7 /gnu/packages | |
parent | 8e9133cc680d08d8aef3a0d5f48e06a1a6039d61 (diff) | |
download | guix-0c82699c6a72d5fa0a765088f225fc0b7c093f37.tar.gz guix-0c82699c6a72d5fa0a765088f225fc0b7c093f37.zip |
gnu: Add texlive-bodegraph.
* gnu/packages/tex.scm (texlive-bodegraph): 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 33bc3c25e7..84f400cc93 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16319,6 +16319,26 @@ programming and control theory. It is an English translation of the @code{schemabloc} package.") (license license:lppl1.3+))) +(define-public texlive-bodegraph + (package + (name "texlive-bodegraph") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bodegraph/" + "tex/latex/bodegraph/") + (base32 + "0r89cnn42yyxpvbxfasalwfdmcq0aksdm3cmqy9wfv4qnc48wmcd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bodegraph") + (synopsis "Draw Bode, Nyquist and Black plots with gnuplot and TikZ") + (description + "The package provides facilities to draw Bode, Nyquist and Black plots +using Gnuplot and Tikz. Elementary Transfer Functions and basic correctors +are preprogrammed for use.") + (license license:lppl))) + (define-public texlive-gates (package (name "texlive-gates") |