me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-excludeonly.

* gnu/packages/tex.scm (texlive-excludeonly): New variable.
master
Nicolas Goaziou 2023-08-29 15:49:41 +02:00
parent 8f6272e1c6
commit 71e00e7524
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -81318,6 +81318,28 @@ file format only acts as an interface between the spreadsheet application and
applications are able to read and write Excel files.") applications are able to read and write Excel files.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public texlive-excludeonly
(package
(name "texlive-excludeonly")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/excludeonly/"
"tex/latex/excludeonly/")
(base32
"0ya7f51h9m207nqiacb1a2kvrlrla8q0gyrv9dzm9k0k01458iyz")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/excludeonly")
(synopsis "Prevent files being @code{\\include}-ed")
(description
"The package defines an @code{\\excludeonly} command, which is the opposite of
@code{\\includeonly}. If both @code{\\includeonly} and @code{\\excludeonly}
exist in a document, only files allowed by both will be included. The package
redefines the internal @code{\\@@include} command, so it conflicts with
packages that do the same.")
(license license:public-domain)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar