diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-12 21:56:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:02 +0200 |
commit | 3cf7468dfef153ef2fb17c84898fe0f2d0209a68 (patch) | |
tree | f73eb33fe204764a816a31749148466c2f48d738 /gnu/packages | |
parent | 2a56b23623175076f64431dc6cd0abc01f195bb3 (diff) | |
download | guix-3cf7468dfef153ef2fb17c84898fe0f2d0209a68.tar.gz guix-3cf7468dfef153ef2fb17c84898fe0f2d0209a68.zip |
gnu: Add texlive-cachepic.
* gnu/packages/tex.scm (texlive-cachepic): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4738959fad..bb4cfd820d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16462,6 +16462,28 @@ library, responsible for all the drawing and a set of LaTeX macros to conveniently use them.") (license license:gpl3+))) +(define-public texlive-cachepic + (package + (name "texlive-cachepic") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/cachepic/" "scripts/cachepic/" + "tex/latex/cachepic/") + (base32 + "0kc713pig67igi0h294k692lmm12mx611z3v73awsf5xv14ms3yx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "cachepic.tlu"))) + (home-page "https://ctan.org/pkg/cachepic") + (synopsis "Convert document fragments into graphics") + (description + "The bundle simplifies and automates conversion of document fragments +into external EPS or PDF files. The bundle consists of two parts: a LaTeX +package that implements a document level interface, and a command line tool +that generates the external graphics.") + (license license:lppl1.3+))) + (define-public texlive-gates (package (name "texlive-gates") |