From c6949b4933c323b9cfc79d0f4dc08f493c658c49 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 14 Aug 2023 10:23:39 +0200 Subject: [PATCH] gnu: Add texlive-pst-lsystem. * gnu/packages/tex.scm (texlive-pst-lsystem): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9b1f3a6d9f..1cf1cf519f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -33403,6 +33403,29 @@ (define-public texlive-pst-light3d effects on characters and PSTricks graphics, like lines, curves, plots, ...") (license license:lppl))) +(define-public texlive-pst-lsystem + (package + (name "texlive-pst-lsystem") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pst-lsystem/" + "dvips/pst-lsystem/" + "tex/generic/pst-lsystem/" + "tex/latex/pst-lsystem/") + (base32 + "1k3krdcfqa5cyzaq0jp8dzil6arfvs5ah2mp87460pl2wvfza0lr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pst-lsystem") + (synopsis "Create images based on a L-system") + (description + "@code{pst-lsystem} is a PSTricks based package for creating images based +on a L-system. A L-system (Lindenmayer system) is a set of rules which can be +used to model the morphology of a variety of organisms or fractals like the +Kochflake or Hilbert curve.") + (license license:lppl))) + (define-public texlive-pst-text (package (name "texlive-pst-text")