From 727696840835c46ebe247d76d03cfa5381dca3a7 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:53:40 +0200 Subject: [PATCH] gnu: Add texlive-komacv. * gnu/packages/tex.scm (texlive-komacv): 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 3674044e20..a345131588 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -86451,6 +86451,25 @@ (define-public texlive-koma-script-sfs fit).") (license license:lppl))) +(define-public texlive-komacv + (package + (name "texlive-komacv") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/komacv/" "source/latex/komacv/" + "tex/latex/komacv/") + (base32 + "17830drzdsk3nhd1n9fcmc4dbcm2lwia3jp2asi3g73yvzkjx7sz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/komacv") + (synopsis "Typesetting a beautiful CV with various style options") + (description + "The class simplifies the creation of beautiful CV. The user may choose +between different styles, and may adjust settings to tune the output.") + (license license:lppl1.3+))) + ;;; ;;; 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