diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:41:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:40 +0200 |
commit | 520041c95454994f6f7d5e55c200c775eed25d0d (patch) | |
tree | 887580bd47db7f5f406da00222244f99e9edda14 | |
parent | 185a8ced2a1bae0b2ba674db9c0185185737fe39 (diff) | |
download | guix-520041c95454994f6f7d5e55c200c775eed25d0d.tar.gz guix-520041c95454994f6f7d5e55c200c775eed25d0d.zip |
gnu: Add texlive-randbild.
* gnu/packages/tex.scm (texlive-randbild): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b28ad45fed..220c4ea04d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3633,6 +3633,28 @@ designed to help users generate circuits.") drawing quantum circuit diagrams.") (license license:cc-by4.0))) +(define-public texlive-randbild + (package + (name "texlive-randbild") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/randbild/" + "source/latex/randbild/" + "tex/latex/randbild/") + (base32 + "1y9qf73163ai738pf6qvaqxy5s2cymyg19qyyfs8dfx2gygcyny9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/randbild") + (synopsis "Marginal pictures") + (description + "This package provides environments @code{randbild} to draw small +marginal plots (using the packages PSTricks and @code{pst-plot}), and +@code{randbildbasis} (the same, only without the automatically drawn +coordinate system).") + (license license:lppl))) + (define-public texlive-amiri (package (name "texlive-amiri") |