From c6b1480151a675e265f669d686cd3a8eb3280d1e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 12 Jul 2023 22:14:28 +0200 Subject: [PATCH] gnu: Add texlive-curve. * gnu/packages/tex.scm (texlive-curve): New variable. --- gnu/packages/tex.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index edf3311833..1e22fe34e6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16642,6 +16642,33 @@ graphics part, as far as LaTeX part does not do it; and rescaling and rotating of complete graphics.") (license license:gpl3+))) +(define-public texlive-curve + (package + (name "texlive-curve") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/curve/" "source/latex/curve/" + "tex/latex/curve/") + (base32 + "0780i6zr24v30ixn6zcalqr2pdp5jkxk8ksfw090aaq03wpxmggg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (home-page "https://ctan.org/pkg/curve") + (synopsis "Class for making curriculum vitae") + (description + "CurVe is a class for writing a CV, with configuration for the language +in which you write. The class provides a set of commands to create rubrics, +entries in these rubrics etc. CurVe then format the CV (possibly splitting it +onto multiple pages, repeating the titles etc), which is usually the most +painful part of CV writing. Another nice feature of CurVe is its ability to +manage different CV flavours simultaneously. It is often the case that you +want to maintain slightly divergent versions of your CV at the same time, in +order to emphasize on different aspects of your background. CurVe also comes +with support for use with AUC-TeX.") + (license license:lppl))) + (define-public texlive-gates (package (name "texlive-gates")