mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add texlive-ltxmisc.
* gnu/packages/tex.scm (texlive-ltxmisc): New variable.
This commit is contained in:
parent
6eb4a3e492
commit
3a6a5d1661
1 changed files with 26 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue