diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:37:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:54 +0200 |
commit | 1771c6812b2e958c7d197312d620eafad0ddee2b (patch) | |
tree | 2b8bdf56dea6bab590809366e19478cd7d064fa1 /gnu | |
parent | 74ec75f84c9e2c421ba295b6cdbe39a6c53c7d48 (diff) | |
download | guix-1771c6812b2e958c7d197312d620eafad0ddee2b.tar.gz guix-1771c6812b2e958c7d197312d620eafad0ddee2b.zip |
gnu: Add texlive-tikz-layers.
* gnu/packages/tex.scm (texlive-tikz-layers): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1a06b21921..f284921ecd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4557,6 +4557,29 @@ use in LaTeX documents. Diagrams include representations of material budgets, fluxes, and connectivity arrangements.") (license license:lppl1.3+))) +(define-public texlive-tikz-layers + (package + (name "texlive-tikz-layers") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikz-layers/" + "tex/latex/tikz-layers/") + (base32 + "1j5wbsybd10zmmiz3lfkb9gzjhxjnbhp7lmdq1fzngywxsb81iz6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikz-layers") + (synopsis + "Add graphical layers on TikZ: @code{behind}, @code{above} and @code{glass}") + (description + "TikZ-layers is a tiny package that provides, alongside +@code{background}, typical graphical layers on TikZ: @code{behind}, +@code{above} and @code{glass}. The layers may be selected with one of the +styles @code{on behind layer}, @code{on above layer}, @code{on glass layer} as +an option to a @code{scope} environment.") + (license license:lppl1.3+))) + (define-public texlive-amiri (package (name "texlive-amiri") |