From ac5edde4cd69b83a3af9c7dbc85589ce285b444b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 10:43:45 +0200 Subject: [PATCH] gnu: Add texlive-tikzinclude. * gnu/packages/tex.scm (texlive-tikzinclude): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 23ead1e0a5..aefe1cd816 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4991,6 +4991,26 @@ images from files and from TikZ pictures. Also, patterns of hexagons and of rhombi are provided.") (license license:lppl1.3+))) +(define-public texlive-tikzinclude + (package + (name "texlive-tikzinclude") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikzinclude/" + "source/latex/tikzinclude/" + "tex/latex/tikzinclude/") + (base32 + "0mcgzbfvj6pksr18813kpnknkdpzlyi0rncbn9g11ac0g0lyzgqq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikzinclude") + (synopsis "Import TikZ images from colletions") + (description + "The package addresses the problem of importing only one TikZ-image from +a file holding multiple images.") + (license license:lppl1.3+))) + (define-public texlive-amiri (package (name "texlive-amiri")