From 586ff2862a36f9e593460705244fd8d11ace4464 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:49 +0200 Subject: [PATCH] gnu: Add texlive-moderncv. * gnu/packages/tex.scm (texlive-moderncv): New variable. --- gnu/packages/tex.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cf4ba59e11..ef5a7cbe9f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -89137,6 +89137,36 @@ (define-public texlive-mnotes collaboratively-written documents.") (license license:lppl1.3+))) +(define-public texlive-moderncv + (package + (name "texlive-moderncv") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/moderncv/" "tex/latex/moderncv/") + (base32 + "0g4syan63zycw07ixy7qk1qmwb8gfwb3mpj7lg65514k80jh8nbi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-etoolbox + texlive-fancyhdr + texlive-graphics + texlive-hyperref + texlive-iftex + texlive-l3packages + texlive-microtype + texlive-tools + texlive-url + texlive-xcolor)) + (home-page "https://ctan.org/pkg/moderncv") + (synopsis "Modern curriculum vitae class") + (description + "The class provides facilities for typesetting modern curriculums vitae, both +in a classic and in a casual style. It is fairly customizable, allowing you +to define your own style by changing the colours, the fonts, etc.") + (license license:lppl1.3c))) + ;;; ;;; 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