diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:52:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:58 +0200 |
commit | ff3f52335255b05c6de3351b298137150534ca99 (patch) | |
tree | dd1428ee11720e8f8f028f88c0afc9964d8da354 /gnu/packages | |
parent | 2ee9d5f0d76fcc237ab0a54f719275e63baf68a6 (diff) | |
download | guix-ff3f52335255b05c6de3351b298137150534ca99.tar.gz guix-ff3f52335255b05c6de3351b298137150534ca99.zip |
gnu: Add texlive-bardiag.
* gnu/packages/tex.scm (texlive-bardiag): 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 574776bb0d..d481417baf 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16135,6 +16135,25 @@ of a picture between running text and margins and for keeping the running text away.") (license license:lppl))) +(define-public texlive-bardiag + (package + (name "texlive-bardiag") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bardiag/" "tex/latex/bardiag/") + (base32 + "1iy0cr24ki93jlnmzr1fgqa7jqg0zhxds422cz322zwr19936zz9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bardiag") + (synopsis "LaTeX package for drawing bar diagrams") + (description + "The main purpose of the package is to make the drawing of bar diagrams +possible and easy in LaTeX. The BarDiag package is inspired by and based on +PSTricks.") + (license license:lppl))) + (define-public texlive-barracuda (package (name "texlive-barracuda") |