diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:20:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:36 +0200 |
commit | 5c9ba593c60728c5b93597b8b64ff0f77dc0df55 (patch) | |
tree | d8b5955c38f46939f24c8025f83cebadb1318b01 | |
parent | d17931ef8137910db088f88899a5c1c874a79073 (diff) | |
download | guix-5c9ba593c60728c5b93597b8b64ff0f77dc0df55.tar.gz guix-5c9ba593c60728c5b93597b8b64ff0f77dc0df55.zip |
gnu: Add texlive-pmgraph.
* gnu/packages/tex.scm (texlive-pmgraph): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 50a470686d..f540a4b639 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3398,6 +3398,25 @@ using TikZ.") arts.") (license license:lppl1.3c))) +(define-public texlive-pmgraph + (package + (name "texlive-pmgraph") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pmgraph/" "tex/latex/pmgraph/") + (base32 + "1a4nd6c9i9y6g34ipjz2ia0m4vizlvx0wcn0yql53pk8k8zrlgnn"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pmgraph") + (synopsis "Poor man's graphics") + (description + "This package provides a set of extensions to LaTeX @code{picture} +environment, including a wider range of vectors, and a lot more box frame +styles.") + (license license:gpl3+))) + (define-public texlive-amiri (package (name "texlive-amiri") |