me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-mwe.

* gnu/packages/tex.scm (texlive-mwe): New variable.
master
Nicolas Goaziou 2023-08-29 15:56:20 +02:00
parent 6d8e508576
commit b0063cce82
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -89784,6 +89784,30 @@ placing @code{\\version} in the header or footer, each page can be marked with
the unique build number describing the progress of your document.") the unique build number describing the progress of your document.")
(license license:lppl1.2+))) (license license:lppl1.2+)))
(define-public texlive-mwe
(package
(name "texlive-mwe")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/mwe/" "source/latex/mwe/"
"tex/latex/mwe/")
(base32
"19ak9zq3mcz2bla9vwvlbvj8h6k64n0wpsvjbbdql51jrqa1r4dj")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(native-inputs (list texlive-ydoc))
(home-page "https://ctan.org/pkg/mwe")
(synopsis "Packages and image files for MWEs")
(description
"The bundle provides several files useful when creating a @acronym{MWE,
Minimal Working Example}. The package itself loads a small set of packages
often used when creating MWEs. In addition, a range of images are provided,
so that they may be used in any (La)TeX document. This allows different users
to share MWEs which include image commands, without the need to share image
files or to use replacement code.")
(license license:lppl1.3+)))
;;; ;;;
;;; 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