gnu: texlive-kvdefinekeys: Refresh package definition.

* gnu/packages/tex.scm (texlive-kvdefinekeys): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-LTXCMDS.
This commit is contained in:
Nicolas Goaziou 2023-05-15 23:47:59 +02:00
parent a8de5e3a2a
commit d75b23ee8a
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -9663,28 +9663,26 @@ (define-public texlive-intcalc
(define-deprecated-package texlive-generic-intcalc texlive-intcalc)
(define-public texlive-kvdefinekeys
(let ((template (simple-texlive-package
"texlive-kvdefinekeys"
(list "doc/latex/kvdefinekeys/"
"source/latex/kvdefinekeys/"
"tex/generic/kvdefinekeys/")
(base32
"1026h223ph3nzhs6jqbasa0bzsrdg3zgllfcwwcavfzb5i6p9jdf"))))
(package
(inherit template)
(outputs '("out" "doc"))
(arguments
(substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ '())
"generic/kvdefinekeys")
((#:build-targets _ '())
#~(list "kvdefinekeys.dtx"))))
(home-page "https://www.ctan.org/pkg/kvdefinekeys")
(synopsis "Define keys for use in the @code{kvsetkeys} package")
(description
"This package provides the @code{\\kv@@define@@key} (analogous to
(package
(name "texlive-kvdefinekeys")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/kvdefinekeys/"
"source/latex/kvdefinekeys/"
"tex/generic/kvdefinekeys/")
(base32
"1026h223ph3nzhs6jqbasa0bzsrdg3zgllfcwwcavfzb5i6p9jdf")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(propagated-inputs
(list texlive-ltxcmds))
(home-page "https://ctan.org/pkg/kvdefinekeys")
(synopsis "Define keys for use in the @code{kvsetkeys} package")
(description
"This package provides the @code{\\kv@@define@@key} (analogous to
keyvals @code{\\define@@key}, to define keys for use by @code{kvsetkeys}.")
(license license:lppl1.3c+))))
(license license:lppl1.3c+)))
(define-deprecated-package texlive-generic-kvdefinekeys texlive-kvdefinekeys)