diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 10:04:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 11:00:26 +0200 |
commit | 580f98d661926ec0472fc46d2a8b2f16c61ac900 (patch) | |
tree | bff5b006c3bfe72c325c9ba265701e2dabb394b7 | |
parent | ffe2b9c3ad2aa230a36a2a16b7fc7de36c7e3a0c (diff) | |
download | guix-580f98d661926ec0472fc46d2a8b2f16c61ac900.tar guix-580f98d661926ec0472fc46d2a8b2f16c61ac900.tar.gz |
gnu: Add texlive-bclogo.
* gnu/packages/tex.scm (texlive-bclogo): New variable.
-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 216895f7ec..556f1ed9f4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2114,6 +2114,25 @@ Basque according to the correct forms ruled by The Basque Language Academy issues of numbers in Basque.") (license license:lppl1.2+))) +(define-public texlive-bclogo + (package + (name "texlive-bclogo") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bclogo/" "metapost/bclogo/" + "tex/latex/bclogo/") + (base32 + "1hdg99xkmdca23s7i63099r9jvgw2larv8aawjllj9mw18195jr9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bclogo") + (synopsis "Creating colourful boxes with logos") + (description + "The package facilitates the creation of colorful boxes with a title and logo. +It may use either TikZ or PSTricks as graphics engine.") + (license license:lppl1.3+))) + (define-public texlive-begriff (package (name "texlive-begriff") |