From 29683f164a53f17b9cd9803092bcf88218911090 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:23 +0200 Subject: [PATCH] gnu: Add texlive-flacards. * gnu/packages/tex.scm (texlive-flacards): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e4fdaded1d..31f04eb3fc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82345,6 +82345,24 @@ colored) for the back of files or binders (currently only the special A4 @emph{Leitz-Ordner} ring binder is supported).") (license license:lppl))) +(define-public texlive-flacards + (package + (name "texlive-flacards") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/flacards/" "tex/latex/flacards/") + (base32 + "048fl0hhd0vh558wzi4lbsnhaxwzg77x5c4x94pn7pmqfn8zlcz0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/flacards") + (synopsis "Generate flashcards for printing") + (description + "The @code{flacards} class provides an easy interface to produce flashcards. +It will print several cards per page, on both sides of the paper.") + (license license:gpl3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar