gnu: Add texlive-ltxmisc.

* gnu/packages/tex.scm (texlive-ltxmisc): New variable.
This commit is contained in:
Nicolas Goaziou 2023-06-09 09:13:51 +02:00
parent 6eb4a3e492
commit 3a6a5d1661
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -9050,6 +9050,32 @@ (define-public texlive-ltxcmds
(define-deprecated-package texlive-generic-ltxcmds texlive-ltxcmds)
(define-public texlive-ltxmisc
(package
(name "texlive-ltxmisc")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "tex/latex/ltxmisc/")
(base32
"14llkpla8gpx7q6a53sd8a0a42wgk93fg4mbl6pc0v7v1kjblr5m")))
(build-system texlive-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'delete-non-free-file
;; This file has a non-commercial license.
(lambda _ (delete-file "tex/latex/ltxmisc/vrbexin.sty"))))))
(home-page "https://ctan.org/pkg/ltxmisc")
(synopsis "Miscellaneous LaTeX packages")
(description
"This package provides miscellaneous LaTeX packages and classes.")
(license (list license:public-domain ;beletter.cls
license:gpl2+ ;bibcheck.sty
license:lppl ;iagproc.cls
(license:fsf-free "file:/linsys.sty")
license:lppl1.0+)))) ;topcapt.sty
(define-public texlive-pdfescape
(package
(name "texlive-pdfescape")