diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:03:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-20 11:17:42 +0200 |
commit | f7a4e9ca7c9ce6f7df0f30462ad5c20746a597f7 (patch) | |
tree | 8afcefa0807c70511cf1a3a538cecc6829ad781f /gnu | |
parent | 27e5af75e9108751231efa65ad45d36d66d31de9 (diff) |
gnu: Add texlive-randomlist.
* gnu/packages/tex.scm (texlive-randomlist): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ed36aa915f..a03fafbffb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3556,6 +3556,29 @@ random integers in a given range, or random dimensions, which can be used to provide random real numbers.") (license license:public-domain))) +(define-public texlive-randomlist + (package + (name "texlive-randomlist") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/randomlist/" + "source/generic/randomlist/" + "tex/generic/randomlist/") + (base32 + "04pbbxxnynyc3l94560vvnad3rx7l2ic6p078az15v5qic7rki84"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/randomlist") + (synopsis + "Deal with database, loop, and random in order to build personalized +exercises") + (description + "The main aim of this package is to work on lists, especially with random +operations. The hidden aim is to build a personnal collection of exercises +with different data for each pupil.") + (license license:lppl1.3+))) + (define-public texlive-tex (package (name "texlive-tex") |