From 3999388a1cb14adae2cb5f27e7be5c83f0f4961d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 14 Aug 2023 10:23:02 +0200 Subject: [PATCH] gnu: Add texlive-pst-layout. * gnu/packages/tex.scm (texlive-pst-layout): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9a026ff0f6..444f921698 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -33340,6 +33340,25 @@ chemical objects. The documentation of the package is illuminated with plenty of illustrations together with their source code, making it an easy read.") (license license:lppl))) +(define-public texlive-pst-layout + (package + (name "texlive-pst-layout") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pst-layout/" + "tex/latex/pst-layout/") + (base32 + "1f07j551kiajqyrfjlsj7xk40zv18ik2b3fih5iyzkf4zk4f650r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-layout") + (synopsis "Page layout macros based on PSTricks packages") + (description + "The package provides a means of creating elaborate (``pseudo-tabular'') +layouts of material, typically to be overlaid on an included graphic.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text")