diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:32:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:50 +0200 |
commit | 267224e94953228574caada4c262d37c5fdc35b2 (patch) | |
tree | ab5223d7ba56b615caab319de81fd619a028151a /gnu/packages | |
parent | c2befb9c7c8bfcc11598c9769202ff3b3259d96e (diff) | |
download | guix-267224e94953228574caada4c262d37c5fdc35b2.tar.gz guix-267224e94953228574caada4c262d37c5fdc35b2.zip |
gnu: Add texlive-tikz-dependency.
* gnu/packages/tex.scm (texlive-tikz-dependency): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d58e8a71ac..45d2b9c374 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4299,6 +4299,27 @@ package also includes an arrow tip library that match closely the arrows present in the Computer Modern typeface.") (license license:lppl1.3+))) +(define-public texlive-tikz-dependency + (package + (name "texlive-tikz-dependency") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikz-dependency/" + "tex/latex/tikz-dependency/") + (base32 + "12a31jqrxlaj8jj5f7p9vgwp8yqinl5ab0c3nfv4b1c9a08p8q3s"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikz-dependency") + (synopsis "Library for drawing dependency graphs") + (description + "The package provides a library that draws together existing TikZ +facilities to make a comfortable environment for drawing dependency graphs. +Basic facilities of the package include a lot of styling facilities, to let +you personalize the look and feel of the graphs.") + (license (list license:lppl license:gpl2)))) + (define-public texlive-amiri (package (name "texlive-amiri") |