diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 22:52:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:47 +0200 |
commit | a933d6f056928260de914c01eff3a706b072256f (patch) | |
tree | 992b7659bf21fa6a755a88c13df159d8b20ddb00 | |
parent | e2d105a1f6866aeb511a708b454f52db1e3c9305 (diff) | |
download | guix-a933d6f056928260de914c01eff3a706b072256f.tar.gz |
gnu: texlive-makecmds: Refresh package definition.
* gnu/packages/tex.scm (texlive-makecmds): Remove SIMPLE-TEXLIVE-PACKAGE call.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a749af7118..97797b258b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6293,19 +6293,20 @@ diagrams.") (define-public texlive-makecmds (package - (inherit (simple-texlive-package - "texlive-makecmds" - (list "doc/latex/makecmds/README" - "source/latex/makecmds/makecmds.dtx" - "source/latex/makecmds/makecmds.ins") - (base32 "0znx80x6ic7a25v9dw8yjibq7lx65wangcyii18kk5x5z4jljba9"))) + (name "texlive-makecmds") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/makecmds/" "source/latex/makecmds/" + "tex/latex/makecmds/") + (base32 + "05y5n265in7mrbpgjxqg339l8r8dmp6lvl4k528pr3rkb8z94qaf"))) (outputs '("out" "doc")) - (arguments - (list - #:tex-directory "latex/makecmds")) - (native-inputs (list (texlive-updmap.cfg - (list texlive-amsfonts - texlive-cm)))) + (build-system texlive-build-system) + (native-inputs + (list (texlive-updmap.cfg + (list texlive-amsfonts + texlive-cm)))) (home-page "https://www.ctan.org/pkg/makecmds") (synopsis "TeX macro to define or redefine a command") (description "The package provides a @code{\\makecommand} command, which |