From 5bc81da921dee4cd057970481eb026a110018a32 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 16 May 2023 22:36:21 +0200 Subject: [PATCH] gnu: texlive-latexconfig: Refresh package definition. * gnu/packages/tex.scm (texlive-latexconfig): Remove SIMPLE-TEXLIVE-PACKAGE call. --- gnu/packages/tex.scm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ef80981185..86833f764e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3175,13 +3175,16 @@ default and narrow versions of multiple integrals.") (define-public texlive-latexconfig (package - (inherit (simple-texlive-package - "texlive-latexconfig" - (list "/tex/latex/latexconfig/") - (base32 - "1x5fyr2185nx3qlyariykdz44hcy5azimrk9db2p707dg08bjhsd") - #:trivial? #t)) - (home-page "https://www.tug.org/") + (name "texlive-latexconfig") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "tex/latex/latexconfig/") + (base32 + "1x5fyr2185nx3qlyariykdz44hcy5azimrk9db2p707dg08bjhsd"))) + (build-system texlive-build-system) + (arguments (list #:texlive-latex-base #f)) + (home-page "https://ctan.org/pkg/latexconfig") (synopsis "Configuration files for LaTeX-related formats") (description "The package provides configuration files for LaTeX-related formats.")