diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-16 22:36:21 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:12:14 +0200 |
commit | 5bc81da921dee4cd057970481eb026a110018a32 (patch) | |
tree | 4ef9ee8baf2c5536ba85d119f51152cd3724b34a /gnu | |
parent | e393e20b8298c333061d8da1e0e52fafa8a64e3e (diff) | |
download | guix-5bc81da921dee4cd057970481eb026a110018a32.tar.gz |
gnu: texlive-latexconfig: Refresh package definition.
* gnu/packages/tex.scm (texlive-latexconfig): Remove SIMPLE-TEXLIVE-PACKAGE call.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 17 |
1 files 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.") |