diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:18:43 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:34 +0200 |
commit | 9c23a7ca6241830177906c4f6497ddb617fefa93 (patch) | |
tree | fbe67259e9657ce20cc9ee1def5c497758e27b72 | |
parent | a39c6b74400df93f8318583e6b15c9a4bb9d127d (diff) | |
download | guix-9c23a7ca6241830177906c4f6497ddb617fefa93.tar.gz guix-9c23a7ca6241830177906c4f6497ddb617fefa93.zip |
gnu: Add texlive-picinpar.
* gnu/packages/tex.scm (texlive-picinpar): 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 f0ad3c2a24..336c6e01b6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3280,6 +3280,26 @@ plots, bar plots, area plots, mesh-- and surface plots and some more. PGFPlots is based on PGF/TikZ (PGF); it runs equally for LaTeX/TeX/ConTeXt.") (license license:gpl3+))) +(define-public texlive-picinpar + (package + (name "texlive-picinpar") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/picinpar/" "tex/latex/picinpar/") + (base32 + "1s6ymq4zg0wl6pfx34shansv3y1qlh6h3q58a97zpz5x21n1a5pq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/picinpar") + (synopsis "Insert pictures into paragraphs") + (description + "This package provides a legacy package for creating windows in +paragraphs, for inserting graphics, etc. Users should note that Pieter van +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-amiri (package (name "texlive-amiri") |