me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-fragments.

* gnu/packages/tex.scm (texlive-fragments): New variable.
master
Nicolas Goaziou 2023-08-29 15:50:53 +02:00
parent 4b2df96d86
commit 86c69b1243
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -82970,6 +82970,30 @@ manually. This package offers some commands for defining such fields in
a distinctive way.")
(license license:lppl)))
(define-public texlive-fragments
(package
(name "texlive-fragments")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/fragments/"
"tex/latex/fragments/")
(base32
"0p2s3nmq25ypvnbfmgr70cw0b3y7s2i40xig9ddjcd1f8q1i1nyq")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/fragments")
(synopsis "Fragments of LaTeX code")
(description
"This package provides a collection of fragments of LaTeX code, suitable for
inclusion in packages, or (possibly) in users documents. Included are:
@code{checklab}, for modifying the label checking code at
@code{\\end@{document@}}; @code{overrightarrow}, defining a doubled over-arrow
macro; @code{removefr}, for removing reset relations between counters; and
@code{subscript}, defining a @code{\\textsubscript} command.")
;; It contains a collection of packages, with different licenses.
(license (list license:public-domain license:lppl))))
;;;
;;; 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