diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:18:55 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:34 +0200 |
commit | f32be4aa97eae58923c1613e88610e044a080207 (patch) | |
tree | 2654b50a38ce8399ec84aef0a6ceeae1191a767a | |
parent | 9c23a7ca6241830177906c4f6497ddb617fefa93 (diff) | |
download | guix-f32be4aa97eae58923c1613e88610e044a080207.tar.gz guix-f32be4aa97eae58923c1613e88610e044a080207.zip |
gnu: Add texlive-pictex.
* gnu/packages/tex.scm (texlive-pictex): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 336c6e01b6..3b447f1df4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3300,6 +3300,26 @@ Oostrum (in a published review of packages of this sort) does not recommend this package; Picins is recommended instead.") (license license:gpl3+))) +(define-public texlive-pictex + (package + (name "texlive-pictex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/pictex/" "tex/generic/pictex/") + (base32 + "1wwlh9d7b3gsk3f29d6vk0ic7nnvc533jfg2z019vsf6pin9qvgv"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pictex") + (synopsis "Picture drawing macros for TeX and LaTeX") + (description + "PicTeX is an early and very comprehensive drawing package that mostly +draws by placing myriads of small dots to make up pictures. It has a tendency +to run out of space; packages @code{m-pictex} and @code{pictexwd} deal with +the problems in different ways.") + (license license:lppl1.0+))) + (define-public texlive-amiri (package (name "texlive-amiri") |