From bce126fb5e8c9d4b85ff28460789026e07eb5e4a Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:47:10 +0200 Subject: [PATCH] gnu: Add texlive-cv4tw. * gnu/packages/tex.scm (texlive-cv4tw): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7e63c2f8e5..72b8da3d13 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -77721,6 +77721,25 @@ is just a package: you choose the overall formatting by deciding which class to use, while the package provides the detailed formatting.") (license license:gpl3+))) +(define-public texlive-cv4tw + (package + (name "texlive-cv4tw") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/cv4tw/" "tex/latex/cv4tw/") + (base32 + "1xd9r0ywx90f7iwk4955gm957jlays56d1n7i3mkvh6incs78asj"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/cv4tw") + (synopsis "LaTeX CV class, with extended details") + (description + "The class offers entries for assets and social networks; customizable styles +are provided. The class comes with no documentation, but a worked example +offers some guidance.") + (license license:expat))) + ;;; ;;; 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