gnu: texlive-hyperref: Refresh package definition.

* gnu/packages/tex.scm (texlive-hyperref): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-16 00:27:11 +02:00
parent 6384af5f31
commit 3de942e71e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D

View File

@ -3845,20 +3845,18 @@ UTF-8 or a suitable 8-bit encoding.")
(license license:lppl1.0+))) ;per xmltex/base/readme.txt
(define-public texlive-hyperref
(let ((template (simple-texlive-package
"texlive-hyperref"
(package
(name "texlive-hyperref")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/hyperref/"
"source/latex/hyperref/"
"tex/latex/hyperref/")
(base32 "052k1nygm4msaivn8245n86km4h41knivigw80q58b7rc13s6hrk"))))
(package
(inherit template)
(arguments
(substitute-keyword-arguments (package-arguments template)
((#:tex-directory _ '())
"latex/hyperref")
((#:build-targets _ '())
#~(list "hyperref.ins"))))
(base32
"052k1nygm4msaivn8245n86km4h41knivigw80q58b7rc13s6hrk")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(propagated-inputs
(list texlive-atbegshi
texlive-auxhook
@ -3889,8 +3887,9 @@ embedded @code{pdfmark} commands for processing by Acrobat
Distiller (@code{dvips} and Y&Y's @code{dvipsone}); for Y&Y's @code{dviwindo};
for PDF control within pdfTeX and @code{dvipdfm}; for TeX4ht; and for VTeX's
pdf and HTML backends. The package is distributed with the @code{backref} and
@code{nameref} packages, which make use of the facilities of @code{hyperref}.")
(license license:lppl1.3+))))
@code{nameref} packages, which make use of the facilities of
@code{hyperref}.")
(license license:lppl1.3+)))
(define-deprecated-package texlive-latex-hyperref texlive-hyperref)