From 8b2b7bd23975c1ea7be99ea247e58478e95f9370 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 13 Jul 2023 09:16:17 +0200 Subject: [PATCH] gnu: Add texlive-pgf-umlsd. * gnu/packages/tex.scm (texlive-pgf-umlsd): 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 30c21aa296..c93cafa478 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3141,6 +3141,25 @@ allows the user to draw spectra using their own data.") "This package provides some LaTeX macros for UML class diagrams.") (license (list license:gpl2 license:lppl1.3c)))) +(define-public texlive-pgf-umlsd + (package + (name "texlive-pgf-umlsd") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pgf-umlsd/" + "tex/latex/pgf-umlsd/") + (base32 + "1bw23gm9x6ijhn3h0q7af0n9wxnc3ixfjc23v8x49s80gh96gmqg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-latex texlive-pgf)) + (home-page "https://ctan.org/pkg/pgf-umlsd") + (synopsis "Draw UML sequence diagrams") + (description + "This package provides LaTeX macros to draw UML diagrams using PGF.") + (license license:gpl3+))) + (define-public texlive-amiri (package (name "texlive-amiri")