gnu: Add texlive-latex-media9.
[jackhill/guix/guix.git] / gnu / packages / tex.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
4 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
6 ;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
7 ;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
8 ;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
9 ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
10 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
11 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
12 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
13 ;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org>
14 ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
15 ;;;
16 ;;; This file is part of GNU Guix.
17 ;;;
18 ;;; GNU Guix is free software; you can redistribute it and/or modify it
19 ;;; under the terms of the GNU General Public License as published by
20 ;;; the Free Software Foundation; either version 3 of the License, or (at
21 ;;; your option) any later version.
22 ;;;
23 ;;; GNU Guix is distributed in the hope that it will be useful, but
24 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;;; GNU General Public License for more details.
27 ;;;
28 ;;; You should have received a copy of the GNU General Public License
29 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
30
31 (define-module (gnu packages tex)
32 #:use-module ((guix licenses) #:prefix license:)
33 #:use-module (guix packages)
34 #:use-module (guix download)
35 #:use-module (guix build-system cmake)
36 #:use-module (guix build-system gnu)
37 #:use-module (guix build-system perl)
38 #:use-module (guix build-system trivial)
39 #:use-module (guix build-system texlive)
40 #:use-module (guix utils)
41 #:use-module (guix git-download)
42 #:use-module (guix svn-download)
43 #:use-module (gnu packages)
44 #:use-module (gnu packages algebra)
45 #:use-module (gnu packages autotools)
46 #:use-module (gnu packages bash)
47 #:use-module (gnu packages boost)
48 #:use-module (gnu packages compression)
49 #:use-module (gnu packages fontutils)
50 #:use-module (gnu packages gd)
51 #:use-module (gnu packages ghostscript)
52 #:use-module (gnu packages gtk)
53 #:use-module (gnu packages icu4c)
54 #:use-module (gnu packages image)
55 #:use-module (gnu packages libreoffice)
56 #:use-module (gnu packages lua)
57 #:use-module (gnu packages multiprecision)
58 #:use-module (gnu packages pdf)
59 #:use-module (gnu packages perl)
60 #:use-module (gnu packages perl-check)
61 #:use-module (gnu packages pkg-config)
62 #:use-module (gnu packages python)
63 #:use-module (gnu packages qt)
64 #:use-module (gnu packages ruby)
65 #:use-module (gnu packages shells)
66 #:use-module (gnu packages base)
67 #:use-module (gnu packages web)
68 #:use-module (gnu packages xml)
69 #:use-module (gnu packages xorg)
70 #:use-module (gnu packages xdisorg)
71 #:autoload (gnu packages texinfo) (texinfo)
72 #:use-module (ice-9 ftw)
73 #:use-module (ice-9 match)
74 #:use-module ((srfi srfi-1) #:hide (zip)))
75
76 (define texlive-extra-src
77 (origin
78 (method url-fetch)
79 (uri "ftp://tug.org/historic/systems/texlive/2017/texlive-20170524-extra.tar.xz")
80 (sha256 (base32
81 "0zvd2zskk78ig114mfj24g15qys41hzqv59fmqpirdbgq9c9gr5g"))))
82
83 (define texlive-texmf-src
84 (origin
85 (method url-fetch)
86 (uri "ftp://tug.org/historic/systems/texlive/2017/texlive-20170524-texmf.tar.xz")
87 (sha256 (base32
88 "1v69y3kgkbk24f7s4dfkknwd317mqmck5jgpyb35wqgqfy5p0qrz"))))
89
90 (define-public texlive-bin
91 (package
92 (name "texlive-bin")
93 (version "20170524")
94 (source
95 (origin
96 (method url-fetch)
97 (uri (string-append "ftp://tug.org/historic/systems/texlive/2017/"
98 "texlive-" version "-source.tar.xz"))
99 (patches
100 (list
101 ;; This is required for compatibility with Poppler >= 0.58.
102 ;; See <http://tutex.tug.org/pipermail/tex-k/2017-September/002809.html>
103 ;; and <https://bugs.archlinux.org/task/55720> for some discussion.
104 (origin
105 (method url-fetch)
106 (uri (string-append "https://git.archlinux.org/svntogit/packages.git/plain"
107 "/trunk/texlive-poppler-0.59.patch?h=packages/texlive-bin"
108 "&id=ba2de374e2b21ecc4b85cc9777f2f15c4d356c61"))
109 (file-name "texlive-poppler-compat.patch")
110 (sha256
111 (base32
112 "1c4ikq4kxw48bi3i33bzpabrjvbk01fwjr2lz20gkc9kv8l0bg3n")))))
113 (sha256 (base32
114 "1amjrxyasplv4alfwcxwnw4nrx7dz2ydmddkq16k6hg90i9njq81"))))
115 (build-system gnu-build-system)
116 (inputs
117 `(("texlive-extra-src" ,texlive-extra-src)
118 ("cairo" ,cairo)
119 ("fontconfig" ,fontconfig)
120 ("fontforge" ,fontforge)
121 ("freetype" ,freetype)
122 ("gd" ,gd)
123 ("gmp" ,gmp)
124 ("ghostscript" ,ghostscript)
125 ("graphite2" ,graphite2)
126 ("harfbuzz" ,harfbuzz)
127 ("icu4c" ,icu4c)
128 ("libpaper" ,libpaper)
129 ("libpng" ,libpng)
130 ("libxaw" ,libxaw)
131 ("libxt" ,libxt)
132 ("mpfr" ,mpfr)
133 ("perl" ,perl)
134 ("pixman" ,pixman)
135 ("poppler" ,poppler)
136 ("potrace" ,potrace)
137 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
138 ("ruby" ,ruby)
139 ("tcsh" ,tcsh)
140 ("teckit" ,teckit)
141 ("zlib" ,zlib)
142 ("zziplib" ,zziplib)))
143 (native-inputs
144 `(("pkg-config" ,pkg-config)))
145 (arguments
146 `(#:out-of-source? #t
147 #:configure-flags
148 `("--disable-native-texlive-build"
149 ;; XXX: This is needed because recent Poppler requires C++11 or later.
150 ;; Remove after switch to GCC >= 6.
151 "CXXFLAGS=-std=gnu++11"
152 "--with-system-cairo"
153 "--with-system-freetype2"
154 "--with-system-gd"
155 "--with-system-gmp"
156 "--with-system-graphite2"
157 "--with-system-harfbuzz"
158 "--with-system-icu"
159 "--with-system-libgs"
160 "--with-system-libpaper"
161 "--with-system-libpng"
162 "--with-system-mpfr"
163 "--with-system-pixman"
164 "--with-system-poppler"
165 "--with-system-potrace"
166 "--with-system-teckit"
167 "--with-system-xpdf"
168 "--with-system-zlib"
169 "--with-system-zziplib")
170
171 ;; Disable tests on mips64/aarch64 to cope with a failure of luajiterr.test.
172 ;; XXX FIXME fix luajit properly on mips64 and aarch64.
173 #:tests? ,(let ((s (or (%current-target-system)
174 (%current-system))))
175 (not (or (string-prefix? "aarch64" s)
176 (string-prefix? "mips64" s))))
177 #:phases
178 (modify-phases %standard-phases
179 (add-after 'unpack 'configure-ghostscript-executable
180 ;; ps2eps.pl uses the "gswin32c" ghostscript executable on Windows,
181 ;; and the "gs" ghostscript executable on Unix. It detects Unix by
182 ;; checking for the existence of the /usr/bin directory. Since
183 ;; GuixSD does not have /usr/bin, it is also detected as Windows.
184 (lambda* (#:key inputs #:allow-other-keys)
185 (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl"
186 (("gswin32c") "gs"))
187 (substitute* "texk/texlive/linked_scripts/epstopdf/epstopdf.pl"
188 (("\"gs\"")
189 (string-append "\"" (assoc-ref inputs "ghostscript") "/bin/gs\"")))
190 #t))
191 (add-after 'install 'postint
192 (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
193 (let* ((out (assoc-ref outputs "out"))
194 (share (string-append out "/share"))
195 (texlive-extra (assoc-ref inputs "texlive-extra-src"))
196 (unpack (assoc-ref %standard-phases 'unpack))
197 (patch-source-shebangs
198 (assoc-ref %standard-phases 'patch-source-shebangs)))
199 ;; Create symbolic links for the latex variants and their
200 ;; man pages.
201 (with-directory-excursion (string-append out "/bin/")
202 (for-each symlink
203 '("pdftex" "pdftex" "xetex" "luatex")
204 '("latex" "pdflatex" "xelatex" "lualatex")))
205 (with-directory-excursion (string-append share "/man/man1/")
206 (symlink "luatex.1" "lualatex.1"))
207 ;; Unpack texlive-extra and install tlpkg.
208 (mkdir "texlive-extra")
209 (with-directory-excursion "texlive-extra"
210 (apply unpack (list #:source texlive-extra))
211 (apply patch-source-shebangs (list #:source texlive-extra))
212 (invoke "mv" "tlpkg" share))
213 ;; texlua shebangs are not patched by the patch-source-shebangs
214 ;; phase because the texlua executable does not exist at that
215 ;; time.
216 (setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
217 (with-directory-excursion out
218 (patch-source-shebangs))))))))
219 (synopsis "TeX Live, a package of the TeX typesetting system")
220 (description
221 "TeX Live provides a comprehensive TeX document production system.
222 It includes all the major TeX-related programs, macro packages, and fonts
223 that are free software, including support for many languages around the
224 world.
225
226 This package contains the binaries.")
227 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
228 (home-page "https://www.tug.org/texlive/")))
229
230 (define-public texlive-dvips
231 (package
232 (name "texlive-dvips")
233 (version (number->string %texlive-revision))
234 (source (origin
235 (method svn-fetch)
236 (uri (svn-reference
237 (url (string-append "svn://www.tug.org/texlive/tags/"
238 %texlive-tag "/Master/texmf-dist/"
239 "/dvips"))
240 (revision %texlive-revision)))
241 (file-name (string-append name "-" version "-checkout"))
242 (sha256
243 (base32
244 "0fcy2hpapbj01ncpjj3v39yhr0jjxb6rm13qaxjjw66s3vydxls1"))))
245 (build-system trivial-build-system)
246 (arguments
247 `(#:modules ((guix build utils))
248 #:builder
249 (begin
250 (use-modules (guix build utils))
251 (let* ((root (string-append (assoc-ref %outputs "out")
252 "/share/texmf-dist"))
253 (dvips (string-append root "/dvips"))
254 (maps (string-append root "/fonts/map/dvips/tetex"))
255 (encs (string-append root "/fonts/enc/dvips/base")))
256 (mkdir-p dvips)
257 (copy-recursively (assoc-ref %build-inputs "source") dvips)
258 (mkdir-p maps)
259 (copy-recursively (assoc-ref %build-inputs "dvips-font-maps") maps)
260 (mkdir-p encs)
261 (copy-recursively (assoc-ref %build-inputs "dvips-base-enc") encs)
262 #t))))
263 (native-inputs
264 `(("dvips-font-maps"
265 ,(origin
266 (method svn-fetch)
267 (uri (svn-reference
268 (url (string-append "svn://www.tug.org/texlive/tags/"
269 %texlive-tag "/Master/texmf-dist/"
270 "/fonts/map/dvips/tetex"))
271 (revision %texlive-revision)))
272 (file-name (string-append "dvips-font-maps-" version "-checkout"))
273 (sha256
274 (base32
275 "100208pg7q6lj7swiq9p9287nn6b64bl62bnlaxpjni9y2kdrqy5"))))
276 ("dvips-base-enc"
277 ,(origin
278 (method svn-fetch)
279 (uri (svn-reference
280 (url (string-append "svn://www.tug.org/texlive/tags/"
281 %texlive-tag "/Master/texmf-dist/"
282 "/fonts/enc/dvips/base"))
283 (revision %texlive-revision)))
284 (file-name (string-append "dvips-base-enc-" version "-checkout"))
285 (sha256
286 (base32
287 "1xnf6ms0h87r55kxik4vicwr1907scj789lhqflqns8svvsli5iy"))))))
288 (home-page "https://www.ctan.org/pkg/dvips")
289 (synopsis "DVI to PostScript drivers")
290 (description "This package provides files needed for converting DVI files
291 to PostScript.")
292 ;; Various free software licenses apply to individual files.
293 (license (list license:lppl1.3c+
294 license:expat
295 license:lgpl3+))))
296
297 (define-public texlive-generic-unicode-data
298 (package
299 (name "texlive-generic-unicode-data")
300 (version (number->string %texlive-revision))
301 (source (origin
302 (method svn-fetch)
303 (uri (svn-reference
304 (url (string-append "svn://www.tug.org/texlive/tags/"
305 %texlive-tag "/Master/texmf-dist/"
306 "/tex/generic/unicode-data"))
307 (revision %texlive-revision)))
308 (file-name (string-append name "-" version "-checkout"))
309 (sha256
310 (base32
311 "0ivrhp6jz31pl4z841g4ws41lmvdiwz4sslmhf02inlib79gz6r2"))))
312 (build-system trivial-build-system)
313 (arguments
314 `(#:modules ((guix build utils))
315 #:builder
316 (begin
317 (use-modules (guix build utils))
318 (let ((target (string-append (assoc-ref %outputs "out")
319 "/share/texmf-dist/tex/generic/unicode-data")))
320 (mkdir-p target)
321 (copy-recursively (assoc-ref %build-inputs "source") target)
322 #t))))
323 (home-page "https://www.ctan.org/pkg/unicode-data")
324 (synopsis "Unicode data and loaders for TeX")
325 (description "This bundle provides generic access to Unicode Consortium
326 data for TeX use. It contains a set of text files provided by the Unicode
327 Consortium which are currently all from Unicode 8.0.0, with the exception of
328 @code{MathClass.txt} which is not currently part of the Unicode Character
329 Database. Accompanying these source data are generic TeX loader files
330 allowing this data to be used as part of TeX runs, in particular in building
331 format files. Currently there are two loader files: one for general character
332 set up and one for initializing XeTeX character classes as has been carried
333 out to date by @code{unicode-letters.tex}. ")
334 (license license:lppl1.3c+)))
335
336 (define-public texlive-generic-dehyph-exptl
337 (package
338 (name "texlive-generic-dehyph-exptl")
339 (version (number->string %texlive-revision))
340 (source (origin
341 (method svn-fetch)
342 (uri (svn-reference
343 (url (string-append "svn://www.tug.org/texlive/tags/"
344 %texlive-tag "/Master/texmf-dist/"
345 "/tex/generic/dehyph-exptl"))
346 (revision %texlive-revision)))
347 (file-name (string-append name "-" version "-checkout"))
348 (sha256
349 (base32
350 "1l9wgv99qq0ysvlxqpj4g8bl0dywbzra4g8m2kmpg2fb0i0hczap"))))
351 (build-system trivial-build-system)
352 (arguments
353 `(#:modules ((guix build utils))
354 #:builder
355 (begin
356 (use-modules (guix build utils))
357 (let ((target (string-append (assoc-ref %outputs "out")
358 "/share/texmf-dist/tex/generic/dehyph-exptl")))
359 (mkdir-p target)
360 (copy-recursively (assoc-ref %build-inputs "source") target)
361 #t))))
362 (home-page "http://projekte.dante.de/Trennmuster/WebHome")
363 (synopsis "Hyphenation patterns for German")
364 (description "The package provides experimental hyphenation patterns for
365 the German language, covering both traditional and reformed orthography. The
366 patterns can be used with packages Babel and hyphsubst from the Oberdiek
367 bundle.")
368 ;; Hyphenation patterns are under the Expat license; documentation is
369 ;; under LPPL.
370 (license (list license:expat license:lppl))))
371
372 (define-public texlive-generic-tex-ini-files
373 (package
374 (name "texlive-generic-tex-ini-files")
375 (version (number->string %texlive-revision))
376 (source (origin
377 (method svn-fetch)
378 (uri (svn-reference
379 (url (string-append "svn://www.tug.org/texlive/tags/"
380 %texlive-tag "/Master/texmf-dist/"
381 "/tex/generic/tex-ini-files"))
382 (revision %texlive-revision)))
383 (file-name (string-append name "-" version "-checkout"))
384 (sha256
385 (base32
386 "1wh42n1lmzcvi3g6mm31nm3yd5ha5bl260xqc444jg1m9fdp3wz5"))))
387 (build-system trivial-build-system)
388 (arguments
389 `(#:modules ((guix build utils))
390 #:builder
391 (begin
392 (use-modules (guix build utils))
393 (let ((target (string-append (assoc-ref %outputs "out")
394 "/share/texmf-dist/tex/generic/tex-ini-files")))
395 (mkdir-p target)
396 (copy-recursively (assoc-ref %build-inputs "source") target)
397 #t))))
398 (home-page "https://www.ctan.org/pkg/tex-ini-files")
399 (synopsis "Files for creating TeX formats")
400 (description "This bundle provides a collection of model \".ini\" files
401 for creating TeX formats. These files are commonly used to introduced
402 distribution-dependent variations in formats. They are also used to
403 allow existing format source files to be used with newer engines, for example
404 to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
405 (license license:public-domain)))
406
407 (define-public texlive-generic-hyph-utf8
408 (package
409 (name "texlive-generic-hyph-utf8")
410 (version (number->string %texlive-revision))
411 (source (origin
412 (method svn-fetch)
413 (uri (svn-reference
414 (url (string-append "svn://www.tug.org/texlive/tags/"
415 %texlive-tag "/Master/texmf-dist/"
416 "/tex/generic/hyph-utf8"))
417 (revision %texlive-revision)))
418 (file-name (string-append name "-" version "-checkout"))
419 (sha256
420 (base32
421 "0ghizcz7ps16dzfqf66wwg5i181assc6qsm0g7g5dbmp909931vi"))))
422 (build-system trivial-build-system)
423 (arguments
424 `(#:modules ((guix build utils))
425 #:builder
426 (begin
427 (use-modules (guix build utils))
428 (let ((target (string-append (assoc-ref %outputs "out")
429 "/share/texmf-dist/tex/generic/hyph-utf8")))
430 (mkdir-p target)
431 (copy-recursively (assoc-ref %build-inputs "source") target)
432 #t))))
433 (home-page "https://ctan.org/pkg/hyph-utf8")
434 (synopsis "Hyphenation patterns expressed in UTF-8")
435 (description "Modern native UTF-8 engines such as XeTeX and LuaTeX need
436 hyphenation patterns in UTF-8 format, whereas older systems require
437 hyphenation patterns in the 8-bit encoding of the font in use (such encodings
438 are codified in the LaTeX scheme with names like OT1, T2A, TS1, OML, LY1,
439 etc). The present package offers a collection of conversions of existing
440 patterns to UTF-8 format, together with converters for use with 8-bit fonts in
441 older systems. Since hyphenation patterns for Knuthian-style TeX systems are
442 only read at iniTeX time, it is hoped that the UTF-8 patterns, with their
443 converters, will completely supplant the older patterns.")
444 ;; Individual files each have their own license. Most of these files are
445 ;; independent hyphenation patterns.
446 (license (list license:lppl1.0+
447 license:lppl1.2+
448 license:lppl1.3
449 license:lppl1.3+
450 license:lppl1.3a+
451 license:lgpl2.1
452 license:lgpl2.1+
453 license:lgpl3+
454 license:gpl2+
455 license:gpl3+
456 license:mpl1.1
457 license:asl2.0
458 license:expat
459 license:bsd-3
460 license:cc0
461 license:public-domain
462 license:wtfpl2))))
463
464 (define-public texlive-metafont-base
465 (package
466 (name "texlive-metafont-base")
467 (version (number->string %texlive-revision))
468 (source (origin
469 (method svn-fetch)
470 (uri (svn-reference
471 (url (string-append "svn://www.tug.org/texlive/tags/"
472 %texlive-tag "/Master/texmf-dist/"
473 "/metafont"))
474 (revision %texlive-revision)))
475 (file-name (string-append name "-" version "-checkout"))
476 (sha256
477 (base32
478 "1yl4n8cn5xqk2nc22zgzq6ymd7bhm6xx1mz3azip7i3ki4bhb5q5"))))
479 (build-system gnu-build-system)
480 (arguments
481 `(#:tests? #f ; no test target
482 #:phases
483 (modify-phases %standard-phases
484 (delete 'configure)
485 (replace 'build
486 (lambda* (#:key inputs #:allow-other-keys)
487 (let ((cwd (getcwd)))
488 (setenv "MFINPUTS"
489 (string-append cwd "/base:"
490 cwd "/misc:"
491 cwd "/roex:"
492 cwd "/feynmf:"
493 cwd "/mfpic:"
494 cwd "/config")))
495 (mkdir "build")
496 (with-directory-excursion "build"
497 (invoke "inimf" "mf.mf"))))
498 (replace 'install
499 (lambda* (#:key outputs #:allow-other-keys)
500 (let* ((out (assoc-ref outputs "out"))
501 (base (string-append out "/share/texmf-dist/web2c"))
502 (mf (string-append out "/share/texmf-dist/metafont/base")))
503 (mkdir-p base)
504 (mkdir-p mf)
505 (install-file "build/mf.base" base)
506 (copy-recursively "base" mf)
507 #t))))))
508 (native-inputs
509 `(("texlive-bin" ,texlive-bin)))
510 (home-page "https://www.ctan.org/pkg/metafont")
511 (synopsis "Metafont base files")
512 (description "This package provides the Metafont base files needed to
513 build fonts using the Metafont system.")
514 (license license:knuth)))
515
516 (define-public texlive-fontname
517 (package
518 (name "texlive-fontname")
519 (version (number->string %texlive-revision))
520 (source (origin
521 (method svn-fetch)
522 (uri (svn-reference
523 (url (string-append "svn://www.tug.org/texlive/tags/"
524 %texlive-tag "/Master/texmf-dist/"
525 "/fonts/map/fontname"))
526 (revision %texlive-revision)))
527 (file-name (string-append name "-" version "-checkout"))
528 (sha256
529 (base32
530 "0cssbzcx15221dynp5sii72qh4l18mwkr14n8w1xb19j8pbaqasz"))))
531 (build-system trivial-build-system)
532 (arguments
533 `(#:modules ((guix build utils))
534 #:builder
535 (begin
536 (use-modules (guix build utils))
537 (let ((target (string-append (assoc-ref %outputs "out")
538 "/share/texmf-dist/fonts/map/fontname")))
539 (mkdir-p target)
540 (copy-recursively (assoc-ref %build-inputs "source") target)
541 #t))))
542 (home-page "https://www.ctan.org/pkg/fontname")
543 (synopsis "Scheme for naming fonts in TeX")
544 (description "This is Fontname, a naming scheme for (the base part of)
545 external TeX font filenames. This makes at most eight-character names
546 from (almost) arbitrarily complex font names, thus helping portability of TeX
547 documents.")
548 (license license:public-domain)))
549
550 (define-public texlive-fonts-cm
551 (package
552 (name "texlive-fonts-cm")
553 (version (number->string %texlive-revision))
554 (source (origin
555 (method svn-fetch)
556 (uri (svn-reference
557 (url (string-append "svn://www.tug.org/texlive/tags/"
558 %texlive-tag "/Master/texmf-dist/"
559 "/fonts/source/public/cm"))
560 (revision %texlive-revision)))
561 (file-name (string-append name "-" version "-checkout"))
562 (sha256
563 (base32
564 "045k5b9rdmbxpy1a3006l1x96z1rd18vg3cwrvnld9bqybw5qz44"))))
565 (build-system gnu-build-system)
566 (arguments
567 `(#:modules ((guix build gnu-build-system)
568 (guix build utils)
569 (srfi srfi-1)
570 (srfi srfi-26))
571 #:tests? #f ; no tests
572 #:phases
573 (modify-phases %standard-phases
574 (delete 'configure)
575 (replace 'build
576 (lambda* (#:key inputs #:allow-other-keys)
577 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
578 ;; Tell mf where to find mf.base
579 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
580 ;; Tell mf where to look for source files
581 (setenv "MFINPUTS"
582 (string-append (getcwd) ":"
583 mf "/share/texmf-dist/metafont/base")))
584 (mkdir "build")
585 (for-each (lambda (font)
586 (format #t "building font ~a\n" font)
587 (invoke "mf" "-progname=mf"
588 "-output-directory=build"
589 (string-append "\\"
590 "mode:=ljfour; "
591 "mag:=1; "
592 "batchmode; "
593 "input "
594 (basename font ".mf"))))
595 (find-files "." "cm(.*[0-9]+.*|inch)\\.mf$"))
596 #t))
597 (replace 'install
598 (lambda* (#:key outputs #:allow-other-keys)
599 (let* ((out (assoc-ref outputs "out"))
600 (tfm (string-append
601 out "/share/texmf-dist/fonts/tfm/public/cm"))
602 (mf (string-append
603 out "/share/texmf-dist/fonts/source/public/cm")))
604 (for-each (cut install-file <> tfm)
605 (find-files "build" "\\.*"))
606 (for-each (cut install-file <> mf)
607 (find-files "." "\\.mf"))
608 #t))))))
609 (native-inputs
610 `(("texlive-bin" ,texlive-bin)
611 ("texlive-metafont-base" ,texlive-metafont-base)))
612 (home-page "https://www.ctan.org/pkg/cm")
613 (synopsis "Computer Modern fonts for TeX")
614 (description "This package provides the Computer Modern fonts by Donald
615 Knuth. The Computer Modern font family is a large collection of text,
616 display, and mathematical fonts in a range of styles, based on Monotype Modern
617 8A.")
618 (license license:knuth)))
619
620 (define-public texlive-fonts-knuth-lib
621 (package
622 (name "texlive-fonts-knuth-lib")
623 (version (number->string %texlive-revision))
624 (source (origin
625 (method svn-fetch)
626 (uri (svn-reference
627 (url (string-append "svn://www.tug.org/texlive/tags/"
628 %texlive-tag "/Master/texmf-dist/"
629 "/fonts/source/public/knuth-lib"))
630 (revision %texlive-revision)))
631 (file-name (string-append name "-" version "-checkout"))
632 (sha256
633 (base32
634 "0in9aqyi8jkyf9d16z0li50z5fpwj1iwgwm83gmvwqcf7chfs04y"))))
635 (build-system gnu-build-system)
636 (arguments
637 `(#:modules ((guix build gnu-build-system)
638 (guix build utils)
639 (srfi srfi-26))
640 #:tests? #f ; no tests
641 #:phases
642 (modify-phases %standard-phases
643 (delete 'configure)
644 (replace 'build
645 (lambda* (#:key inputs #:allow-other-keys)
646 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
647 ;; Tell mf where to find mf.base
648 (setenv "MFBASES"
649 (string-append mf "/share/texmf-dist/web2c"))
650 ;; Tell mf where to look for source files
651 (setenv "MFINPUTS"
652 (string-append (getcwd) ":"
653 mf "/share/texmf-dist/metafont/base")))
654 (mkdir "build")
655 (invoke "mf" "-progname=mf"
656 "-output-directory=build"
657 (string-append "\\"
658 "mode:=ljfour; "
659 "mag:=1; "
660 "batchmode; "
661 "input manfnt"))))
662 (replace 'install
663 (lambda* (#:key outputs #:allow-other-keys)
664 (let* ((out (assoc-ref outputs "out"))
665 (tfm (string-append
666 out "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
667 (mf (string-append
668 out "/share/texmf-dist/fonts/source/public/knuth-lib")))
669 (for-each (cut install-file <> tfm)
670 (find-files "build" "\\.*"))
671 (for-each (cut install-file <> mf)
672 (find-files "." "\\.mf"))
673 #t))))))
674 (native-inputs
675 `(("texlive-bin" ,texlive-bin)
676 ("texlive-metafont-base" ,texlive-metafont-base)))
677 (home-page "https://www.ctan.org/pkg/knuth-lib")
678 (synopsis "Small library of METAFONT sources")
679 (description "This is a collection of core TeX and METAFONT macro files
680 from Donald Knuth, including the plain format, plain base, and the MF logo
681 fonts.")
682 (license license:knuth)))
683
684 (define-public texlive-fonts-latex
685 (package
686 (name "texlive-fonts-latex")
687 (version (number->string %texlive-revision))
688 (source (origin
689 (method svn-fetch)
690 (uri (svn-reference
691 (url (string-append "svn://www.tug.org/texlive/tags/"
692 %texlive-tag "/Master/texmf-dist/"
693 "/fonts/source/public/latex-fonts"))
694 (revision %texlive-revision)))
695 (file-name (string-append name "-" version "-checkout"))
696 (sha256
697 (base32
698 "0ypsm4xv9cw0jckk2qc7gi9hcmhf31mrg56pz3llyx3yd9vq2lps"))))
699 (build-system gnu-build-system)
700 (arguments
701 `(#:modules ((guix build gnu-build-system)
702 (guix build utils)
703 (srfi srfi-1)
704 (srfi srfi-26))
705 #:tests? #f ; no tests
706 #:phases
707 (modify-phases %standard-phases
708 (delete 'configure)
709 (replace 'build
710 (lambda* (#:key inputs #:allow-other-keys)
711 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
712 ;; Tell mf where to find mf.base
713 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
714 ;; Tell mf where to look for source files
715 (setenv "MFINPUTS"
716 (string-append (getcwd) ":"
717 mf "/share/texmf-dist/metafont/base:"
718 (assoc-ref inputs "texlive-fonts-cm")
719 "/share/texmf-dist/fonts/source/public/cm")))
720 (mkdir "build")
721 (for-each (lambda (font)
722 (format #t "building font ~a\n" font)
723 (invoke "mf" "-progname=mf"
724 "-output-directory=build"
725 (string-append "\\"
726 "mode:=ljfour; "
727 "mag:=1; "
728 "batchmode; "
729 "input " font)))
730 '("icmcsc10" "icmex10" "icmmi8" "icmsy8" "icmtt8"
731 "ilasy8" "ilcmss8" "ilcmssb8" "ilcmssi8"
732 "lasy5" "lasy6" "lasy7" "lasy8" "lasy9" "lasy10" "lasyb10"
733 "lcircle10" "lcirclew10" "lcmss8" "lcmssb8" "lcmssi8"
734 "line10" "linew10"))
735 #t))
736 (replace 'install
737 (lambda* (#:key outputs #:allow-other-keys)
738 (let* ((out (assoc-ref outputs "out"))
739 (tfm (string-append
740 out "/share/texmf-dist/fonts/tfm/public/latex-fonts"))
741 (mf (string-append
742 out "/share/texmf-dist/fonts/source/public/latex-fonts")))
743 (for-each (cut install-file <> tfm)
744 (find-files "build" "\\.*"))
745 (for-each (cut install-file <> mf)
746 (find-files "." "\\.mf"))
747 #t))))))
748 (native-inputs
749 `(("texlive-bin" ,texlive-bin)
750 ("texlive-metafont-base" ,texlive-metafont-base)
751 ("texlive-fonts-cm" ,texlive-fonts-cm)))
752 (home-page "https://www.ctan.org/pkg/latex-fonts")
753 (synopsis "Collection of fonts used in LaTeX distributions")
754 (description "This is a collection of fonts for use with standard LaTeX
755 packages and classes. It includes invisible fonts (for use with the slides
756 class), line and circle fonts (for use in the picture environment) and LaTeX
757 symbol fonts.")
758 (license license:lppl1.2+)))
759
760 (define-public texlive-fonts-amsfonts
761 (package
762 (name "texlive-fonts-amsfonts")
763 (version (number->string %texlive-revision))
764 (source (origin
765 (method svn-fetch)
766 (uri (svn-reference
767 (url (string-append "svn://www.tug.org/texlive/tags/"
768 %texlive-tag "/Master/texmf-dist/"
769 "/fonts/source/public/amsfonts"))
770 (revision %texlive-revision)))
771 (file-name (string-append name "-" version "-checkout"))
772 (sha256
773 (base32
774 "07h20rvpbdb4k72hzmjkyb29426zr9wxsfp6yd4ajbbpd3vx8grb"))))
775 (build-system gnu-build-system)
776 (arguments
777 `(#:modules ((guix build gnu-build-system)
778 (guix build utils)
779 (srfi srfi-1)
780 (srfi srfi-26))
781 #:tests? #f ; no tests
782 #:phases
783 (modify-phases %standard-phases
784 (delete 'configure)
785 (replace 'build
786 (lambda* (#:key inputs #:allow-other-keys)
787 (let ((mf (assoc-ref inputs "texlive-metafont-base"))
788 (cwd (getcwd)))
789 ;; Make METAFONT reproducible
790 (setenv "SOURCE_DATE_EPOCH" "1")
791 ;; Tell mf where to find mf.base
792 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
793 ;; Tell mf where to look for source files
794 (setenv "MFINPUTS"
795 (string-append cwd ":"
796 cwd "/cmextra:"
797 cwd "/cyrillic:"
798 cwd "/dummy:"
799 cwd "/symbols:"
800 mf "/share/texmf-dist/metafont/base:"
801 (assoc-ref inputs "texlive-fonts-cm")
802 "/share/texmf-dist/fonts/source/public/cm")))
803 (mkdir "build")
804 (for-each (lambda (font)
805 (format #t "building font ~a\n" (basename font ".mf"))
806 (with-directory-excursion (dirname font)
807 (invoke "mf" "-progname=mf"
808 "-output-directory=../build"
809 (string-append "\\"
810 "mode:=ljfour; "
811 "mag:=1; "
812 "nonstopmode; "
813 "input "
814 (getcwd) "/"
815 (basename font ".mf")))))
816 (find-files "." "[0-9]+\\.mf$"))
817 #t))
818 (replace 'install
819 (lambda* (#:key outputs #:allow-other-keys)
820 (let* ((out (assoc-ref outputs "out"))
821 (tfm (string-append
822 out "/share/texmf-dist/fonts/tfm/public/amsfonts"))
823 (mf (string-append
824 out "/share/texmf-dist/fonts/source/public/amsfonts")))
825 (for-each (cut install-file <> tfm)
826 (find-files "build" "\\.*"))
827 (for-each (cut install-file <> mf)
828 (find-files "." "\\.mf"))
829 #t))))))
830 (native-inputs
831 `(("texlive-fonts-cm" ,texlive-fonts-cm)
832 ("texlive-metafont-base" ,texlive-metafont-base)
833 ("texlive-bin" ,texlive-bin)))
834 (home-page "https://www.ctan.org/pkg/amsfonts")
835 (synopsis "TeX fonts from the American Mathematical Society")
836 (description
837 "This package provides an extended set of fonts for use in mathematics,
838 including: extra mathematical symbols; blackboard bold letters (uppercase
839 only); fraktur letters; subscript sizes of bold math italic and bold Greek
840 letters; subscript sizes of large symbols such as sum and product; added sizes
841 of the Computer Modern small caps font; cyrillic fonts (from the University of
842 Washington); Euler mathematical fonts. All fonts are provided as Adobe Type 1
843 files, and all except the Euler fonts are provided as Metafont source. The
844 distribution also includes the canonical Type 1 versions of the Computer
845 Modern family of fonts. The Euler fonts are supported by separate packages;
846 details can be found in the documentation.")
847 (license license:silofl1.1)))
848
849 (define-public texlive-latex-amsfonts
850 (package
851 (name "texlive-latex-amsfonts")
852 (version (number->string %texlive-revision))
853 (source (origin
854 (method svn-fetch)
855 (uri (texlive-ref "latex" "amsfonts"))
856 (file-name (string-append name "-" version "-checkout"))
857 (sha256
858 (base32
859 "0slzfv5h2m03b2xvm2sasznz4azh6rgi069z161dja3l8rln79hm"))))
860 (build-system texlive-build-system)
861 (arguments '(#:tex-directory "latex/amsfonts"))
862 (native-inputs
863 `(("texlive-fonts-cm" ,texlive-fonts-cm)
864 ("texlive-metafont-base" ,texlive-metafont-base)))
865 (home-page "https://www.ctan.org/pkg/amsfonts")
866 (synopsis "TeX fonts from the American Mathematical Society")
867 (description
868 "This package provides basic LaTeX support for the symbol fonts provides
869 by the amsfonts package. It provides @code{amsfonts.sty}, with names of
870 individual symbols defined in @code{amssymb.sty}.")
871 (license license:silofl1.1)))
872
873 ;; This provides etex.src which is needed to build various formats, including
874 ;; luatex.fmt and pdflatex.fmt
875 (define-public texlive-tex-plain
876 (package
877 (name "texlive-tex-plain")
878 (version (number->string %texlive-revision))
879 (source (origin
880 (method svn-fetch)
881 (uri (svn-reference
882 (url (string-append "svn://www.tug.org/texlive/tags/"
883 %texlive-tag "/Master/texmf-dist/"
884 "/tex/plain"))
885 (revision %texlive-revision)))
886 (file-name (string-append name "-" version "-checkout"))
887 (sha256
888 (base32
889 "0mjgl3gscn3ps29yjambz1j9fg81ynnncb96vpprwx4xsijhsns0"))))
890 (build-system trivial-build-system)
891 (arguments
892 `(#:modules ((guix build utils))
893 #:builder
894 (begin
895 (use-modules (guix build utils))
896 (let ((target (string-append (assoc-ref %outputs "out")
897 "/share/texmf-dist/tex/plain")))
898 (mkdir-p target)
899 (copy-recursively (assoc-ref %build-inputs "source") target)
900 #t))))
901 (home-page "https://www.ctan.org/pkg/plain")
902 (synopsis "Plain TeX format and supporting files")
903 (description
904 "Contains files used to build the Plain TeX format, as described in the
905 TeXbook, together with various supporting files (some also discussed in the
906 book).")
907 (license license:knuth)))
908
909 (define-public texlive-latex-base
910 (let ((texlive-dir
911 (lambda (dir hash)
912 (origin
913 (method svn-fetch)
914 (uri (svn-reference
915 (url (string-append "svn://www.tug.org/texlive/tags/"
916 %texlive-tag "/Master/texmf-dist/"
917 dir))
918 (revision %texlive-revision)))
919 (file-name (string-append "texlive-generic-"
920 (last (string-split
921 (string-drop-right dir 1) #\/))
922 "-" (number->string %texlive-revision)
923 "-checkout"))
924 (sha256 (base32 hash))))))
925 (package
926 (name "texlive-latex-base")
927 (version (number->string %texlive-revision))
928 (source (origin
929 (method svn-fetch)
930 (uri (texlive-ref "latex" "base"))
931 (file-name (string-append name "-" version "-checkout"))
932 (sha256
933 (base32
934 "1h9pir2hz6i9avc4lrl733p3zf4rpkg8537x1zdbhs91hvhikw9k"))))
935 (build-system gnu-build-system)
936 (arguments
937 `(#:modules ((guix build gnu-build-system)
938 (guix build utils)
939 (ice-9 match)
940 (srfi srfi-1)
941 (srfi srfi-26))
942 #:tests? #f ; no tests
943 #:phases
944 (modify-phases %standard-phases
945 (delete 'configure)
946 (replace 'build
947 (lambda* (#:key inputs #:allow-other-keys)
948 ;; Find required fonts
949 (setenv "TFMFONTS"
950 (string-append (assoc-ref inputs "texlive-fonts-cm")
951 "/share/texmf-dist/fonts/tfm/public/cm:"
952 (assoc-ref inputs "texlive-fonts-latex")
953 "/share/texmf-dist/fonts/tfm/public/latex-fonts:"
954 (assoc-ref inputs "texlive-fonts-knuth-lib")
955 "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
956 (setenv "TEXINPUTS"
957 (string-append
958 (getcwd) ":"
959 (getcwd) "/build:"
960 (string-join
961 (append-map (match-lambda
962 ((_ . dir)
963 (find-files dir
964 (lambda (_ stat)
965 (eq? 'directory (stat:type stat)))
966 #:directories? #t
967 #:stat stat)))
968 inputs)
969 ":")))
970
971 ;; Create an empty texsys.cfg, because latex.ltx wants to include
972 ;; it. This file must exist and it's fine if it's empty.
973 (with-output-to-file "texsys.cfg"
974 (lambda _ (format #t "%")))
975
976 (mkdir "build")
977 (mkdir "web2c")
978 (invoke "luatex" "-ini" "-interaction=batchmode"
979 "-output-directory=build" "unpack.ins")
980 (invoke "tex" "-ini" "-interaction=batchmode"
981 "-output-directory=web2c" "tex.ini")
982 ;; LaTeX, pdfetex/pdftex, and XeTeX require e-TeX, which
983 ;; is enabled only in extended mode (activated with a
984 ;; leading asterisk). We should not use luatex here,
985 ;; because that would make the generated format files
986 ;; incompatible with any other TeX engine.
987 (for-each (lambda (format)
988 (invoke "latex" "-ini" "-interaction=batchmode"
989 "-output-directory=web2c"
990 "-translate-file=cp227.tcx"
991 (string-append "*" format ".ini")))
992 '("latex"
993 "pdflatex"
994 "pdfetex"))
995 (for-each (lambda (format)
996 (invoke format "-ini" "-interaction=batchmode"
997 "-output-directory=web2c"
998 (string-append "*" format ".ini")))
999 '("xetex"
1000 "xelatex"))
1001 (for-each (lambda (format)
1002 (invoke "luatex" "-ini" "-interaction=batchmode"
1003 "-output-directory=web2c"
1004 (string-append format ".ini")))
1005 '("dviluatex" "dvilualatex" "luatex" "lualatex"))
1006 #t))
1007 (replace 'install
1008 (lambda* (#:key outputs #:allow-other-keys)
1009 (let* ((out (assoc-ref outputs "out"))
1010 (target (string-append
1011 out "/share/texmf-dist/tex/latex/base"))
1012 (web2c (string-append
1013 out "/share/texmf-dist/web2c")))
1014 (mkdir-p target)
1015 (mkdir-p web2c)
1016 (for-each delete-file (find-files "." "\\.(log|aux)$"))
1017 (for-each (cut install-file <> target)
1018 (find-files "build" ".*"))
1019 (for-each (cut install-file <> web2c)
1020 (find-files "web2c" ".*"))
1021 ;; pdftex is really just the same as pdfetex, but since it
1022 ;; doesn't have its own format file, we need to copy it.
1023 (copy-file "web2c/pdfetex.fmt"
1024 (string-append web2c "/pdftex.fmt"))
1025 #t))))))
1026 (native-inputs
1027 `(("texlive-bin" ,texlive-bin)
1028 ("texlive-generic-unicode-data" ,texlive-generic-unicode-data)
1029 ("texlive-generic-dehyph-exptl" ,texlive-generic-dehyph-exptl)
1030 ("texlive-generic-tex-ini-files" ,texlive-generic-tex-ini-files)
1031 ("texlive-latex-latexconfig"
1032 ,(texlive-dir "tex/latex/latexconfig/"
1033 "1zb3j49cj8p75yph6c8iysjp7qbdvghwf0mn9j0l7qq3qkbz2xaf"))
1034 ("texlive-generic-hyph-utf8" ,texlive-generic-hyph-utf8)
1035 ("texlive-generic-hyphen"
1036 ,(texlive-dir "tex/generic/hyphen/"
1037 "0xim36wybw2625yd0zwlp9m2c2xrcybw58gl4rih9nkph0wqwwhd"))
1038 ("texlive-generic-ruhyphen"
1039 ,(texlive-dir "tex/generic/ruhyphen/"
1040 "14rjkpl4zkjqs13rcf9kcd24mn2kx7i1jbdwxq8ds94bi66ylzsd"))
1041 ("texlive-generic-ukrhyph"
1042 ,(texlive-dir "tex/generic/ukrhyph/"
1043 "1cfwdg2rhbayl3w0x1xqd36d45zbc96f029myp13s7cb6kbmbppv"))
1044 ("texlive-generic-config"
1045 ,(texlive-dir "tex/generic/config/"
1046 "19vj088p4kkp6xll0141m4kl6ssgdzhs3g10i232khb07aqiag8s"))
1047 ("texlive-tex-plain" ,texlive-tex-plain)
1048 ("texlive-fonts-cm" ,texlive-fonts-cm)
1049 ("texlive-fonts-latex" ,texlive-fonts-latex)
1050 ("texlive-fonts-knuth-lib" ,texlive-fonts-knuth-lib)))
1051 (home-page "https://www.ctan.org/pkg/latex-base")
1052 (synopsis "Base sources of LaTeX")
1053 (description
1054 "This bundle comprises the source of LaTeX itself, together with several
1055 packages which are considered \"part of the kernel\". This bundle, together
1056 with the required packages, constitutes what every LaTeX distribution should
1057 contain.")
1058 (license license:lppl1.3c+))))
1059
1060 (define-public texlive-latex-filecontents
1061 (package
1062 (name "texlive-latex-filecontents")
1063 (version (number->string %texlive-revision))
1064 (source (origin
1065 (method svn-fetch)
1066 (uri (texlive-ref "latex" "filecontents"))
1067 (file-name (string-append name "-" version "-checkout"))
1068 (sha256
1069 (base32
1070 "0swkbxv8vg0yizadfnvrwjb4cj0pn34v9wm6v7wqq903fdav7k7q"))))
1071 (build-system texlive-build-system)
1072 (arguments '(#:tex-directory "latex/filecontents"))
1073 (home-page "https://www.ctan.org/pkg/filecontents")
1074 (synopsis "Extended filecontents and filecontents* environments")
1075 (description
1076 "LaTeX2e's @code{filecontents} and @code{filecontents*} environments
1077 enable a LaTeX source file to generate external files as it runs through
1078 LaTeX. However, there are two limitations of these environments: they refuse
1079 to overwrite existing files, and they can only be used in the preamble of a
1080 document. The filecontents package removes these limitations, letting you
1081 overwrite existing files and letting you use @code{filecontents} /
1082 @code{filecontents*} anywhere.")
1083 (license license:lppl1.3c+)))
1084
1085 (define-public texlive-generic-ifxetex
1086 (package
1087 (name "texlive-generic-ifxetex")
1088 (version (number->string %texlive-revision))
1089 (source (origin
1090 (method svn-fetch)
1091 (uri (texlive-ref "generic" "ifxetex"))
1092 (file-name (string-append name "-" version "-checkout"))
1093 (sha256
1094 (base32
1095 "0w2xj7n0szavj329kds09q626szkc378p3w0sk022q0ln4ksz86d"))))
1096 (build-system texlive-build-system)
1097 (arguments
1098 '(#:tex-directory "generic/ifxetex"
1099 #:tex-format "xelatex"))
1100 (inputs
1101 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
1102 (home-page "https://www.ctan.org/pkg/ifxetex")
1103 (synopsis "Am I running under XeTeX?")
1104 (description
1105 "This is a simple package which provides an @code{\\ifxetex} conditional,
1106 so that other code can determine that it is running under XeTeX. The package
1107 requires the e-TeX extensions to the TeX primitive set.")
1108 (license license:lppl1.3c+)))
1109
1110 (define-public texlive-generic-epsf
1111 (package
1112 (name "texlive-generic-epsf")
1113 (version (number->string %texlive-revision))
1114 (source (origin
1115 (method svn-fetch)
1116 (uri (svn-reference
1117 (url (string-append "svn://www.tug.org/texlive/tags/"
1118 %texlive-tag "/Master/texmf-dist/"
1119 "/tex/generic/epsf"))
1120 (revision %texlive-revision)))
1121 (file-name (string-append name "-" version "-checkout"))
1122 (sha256
1123 (base32
1124 "14w3j81ympyvg8hkk9i1xgr8a0gfnfsb2ki8qqsk5pa051za1xcy"))))
1125 (build-system trivial-build-system)
1126 (arguments
1127 `(#:modules ((guix build utils))
1128 #:builder
1129 (begin
1130 (use-modules (guix build utils))
1131 (let ((target (string-append (assoc-ref %outputs "out")
1132 "/share/texmf-dist/tex/generic/epfs")))
1133 (mkdir-p target)
1134 (copy-recursively (assoc-ref %build-inputs "source") target)
1135 #t))))
1136 (home-page "https://www.ctan.org/pkg/epsf")
1137 (synopsis "Simple macros for EPS inclusion")
1138 (description
1139 "This package provides the original (and now obsolescent) graphics
1140 inclusion macros for use with dvips, still widely used by Plain TeX users (in
1141 particular). For LaTeX users, the package is nowadays (rather strongly)
1142 deprecated in favour of the more sophisticated standard LaTeX latex-graphics
1143 bundle of packages. (The latex-graphics bundle is also available to Plain TeX
1144 users, via its Plain TeX version.)")
1145 (license license:public-domain)))
1146
1147 (define-public texlive-latex-fancyvrb
1148 (package
1149 (name "texlive-latex-fancyvrb")
1150 (version (number->string %texlive-revision))
1151 (source (origin
1152 (method svn-fetch)
1153 (uri (texlive-ref "latex" "fancyvrb"))
1154 (file-name (string-append name "-" version "-checkout"))
1155 (sha256
1156 (base32
1157 "03l7140y031rr14h02i4z9zqsfvrbn7wzwxbjsrjcgrk6sdr71wv"))))
1158 (build-system texlive-build-system)
1159 (arguments
1160 '(#:tex-directory "latex/fancyvrb"
1161 ;; We exclude "fvrb-ex" to avoid a dependency on texlive-luaotfload and
1162 ;; thus texlive-luatex-lualibs.
1163 #:build-targets '("fancyvrb.ins")))
1164 (home-page "https://www.ctan.org/pkg/fancyvrb")
1165 (synopsis "Sophisticated verbatim text")
1166 (description
1167 "This package provides tools for the flexible handling of verbatim text
1168 including: verbatim commands in footnotes; a variety of verbatim environments
1169 with many parameters; ability to define new customized verbatim environments;
1170 save and restore verbatim text and environments; write and read files in
1171 verbatim mode; build \"example\" environments (showing both result and
1172 verbatim source).")
1173 (license license:lppl1.0+)))
1174
1175 (define-public texlive-latex-graphics
1176 (package
1177 (name "texlive-latex-graphics")
1178 (version (number->string %texlive-revision))
1179 (source (origin
1180 (method svn-fetch)
1181 (uri (texlive-ref "latex" "graphics"))
1182 (file-name (string-append name "-" version "-checkout"))
1183 (sha256
1184 (base32
1185 "07azyn0b1s49vbdlr6dmygrminxp72ndl24j1091hiiccvrjq3xc"))))
1186 (build-system texlive-build-system)
1187 (arguments
1188 '(#:tex-directory "latex/graphics"
1189 #:phases
1190 (modify-phases %standard-phases
1191 (add-after 'install 'install-config
1192 (lambda* (#:key inputs outputs #:allow-other-keys)
1193 (let ((cfg (assoc-ref inputs "graphics-cfg"))
1194 (target (string-append (assoc-ref outputs "out")
1195 "/share/texmf-dist/tex/latex/graphics-cfg")))
1196 (mkdir-p target)
1197 (install-file (string-append cfg "/graphics.cfg") target)
1198 (install-file (string-append cfg "/color.cfg") target)
1199 #t)))
1200 (add-after 'install 'install-defs
1201 (lambda* (#:key inputs outputs #:allow-other-keys)
1202 (let ((def (assoc-ref inputs "graphics-def"))
1203 (target (string-append (assoc-ref outputs "out")
1204 "/share/texmf-dist/tex/latex/graphics-def")))
1205 (mkdir-p target)
1206 (copy-recursively def target)
1207 #t))))))
1208 (native-inputs
1209 `(("graphics-cfg"
1210 ,(origin
1211 (method git-fetch)
1212 (uri (git-reference
1213 (url "https://github.com/latex3/graphics-cfg.git")
1214 (commit "19d1238af17df376cd46333b229579b0f7f3a41f")))
1215 (file-name (string-append "graphics-cfg-"
1216 (number->string %texlive-revision)
1217 "-checkout"))
1218 (sha256
1219 (base32
1220 "12kbgbm52gmmgn8zajb74s8n5rvnxcfdvs3iyj8vcw5vrsw5i6mh"))))
1221 ("graphics-def"
1222 ,(origin
1223 (method svn-fetch)
1224 (uri (svn-reference
1225 (url (string-append "svn://www.tug.org/texlive/tags/"
1226 %texlive-tag "/Master/texmf-dist/"
1227 "/tex/latex/graphics-def"))
1228 (revision %texlive-revision)))
1229 (file-name (string-append "graphics-def-"
1230 (number->string %texlive-revision)
1231 "-checkout"))
1232 (sha256
1233 (base32
1234 "0gi4qv6378nl84s8n1yx3hjqvv7r4lza7hpbymbl5rzwgw8qrnyb"))))))
1235 (home-page "https://www.ctan.org/pkg/latex-graphics")
1236 (synopsis "LaTeX standard graphics bundle")
1237 (description
1238 "This is a collection of LaTeX packages for producing color, including
1239 graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX
1240 documents. It comprises the packages color, graphics, graphicx, trig, epsfig,
1241 keyval, and lscape.")
1242 ;; The configuration files are released under CC0.
1243 (license (list license:lppl1.3c+
1244 license:cc0))))
1245
1246 (define-public texlive-latex-xcolor
1247 (package
1248 (name "texlive-latex-xcolor")
1249 (version (number->string %texlive-revision))
1250 (source (origin
1251 (method svn-fetch)
1252 (uri (texlive-ref "latex" "xcolor"))
1253 (file-name (string-append name "-" version "-checkout"))
1254 (sha256
1255 (base32
1256 "01n613s7bcrd2n4jfawm0k4nn2ny3aaifp2jjfif3lz4sbv31494"))))
1257 (build-system texlive-build-system)
1258 (arguments '(#:tex-directory "latex/xcolor"))
1259 (home-page "https://www.ctan.org/pkg/xcolor")
1260 (synopsis "Driver-independent color extensions for LaTeX and pdfLaTeX")
1261 (description
1262 "The package starts from the basic facilities of the colorcolor package,
1263 and provides easy driver-independent access to several kinds of color tints,
1264 shades, tones, and mixes of arbitrary colors. It allows a user to select a
1265 document-wide target color model and offers complete tools for conversion
1266 between eight color models. Additionally, there is a command for alternating
1267 row colors plus repeated non-aligned material (like horizontal lines) in
1268 tables.")
1269 (license license:lppl1.2+)))
1270
1271 (define-public texlive-latex-hyperref
1272 (package
1273 (name "texlive-latex-hyperref")
1274 (version "6.84a2")
1275 ;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
1276 ;; so we fetch the release from GitHub.
1277 (source (origin
1278 (method url-fetch)
1279 (uri (string-append "https://github.com/ho-tex/hyperref/"
1280 "archive/release-" version ".tar.gz"))
1281 (file-name (string-append name "-" version ".tar.gz"))
1282 (sha256
1283 (base32
1284 "1d3rmjgzh0025a1dza55zb6nzzlgd1y9snwx45wq1c1vf42m79h2"))))
1285 (build-system texlive-build-system)
1286 (arguments '(#:tex-directory "latex/hyperref"))
1287 (home-page "https://www.ctan.org/pkg/hyperref")
1288 (synopsis "Extensive support for hypertext in LaTeX")
1289 (description
1290 "The @code{hyperref} package is used to handle cross-referencing commands
1291 in LaTeX to produce hypertext links in the document. The package provides
1292 backends for the @code{\\special} set defined for HyperTeX DVI processors; for
1293 embedded @code{pdfmark} commands for processing by Acrobat
1294 Distiller (@code{dvips} and Y&Y's @code{dvipsone}); for Y&Y's @code{dviwindo};
1295 for PDF control within pdfTeX and @code{dvipdfm}; for TeX4ht; and for VTeX's
1296 pdf and HTML backends. The package is distributed with the @code{backref} and
1297 @code{nameref} packages, which make use of the facilities of @code{hyperref}.")
1298 (license license:lppl1.3+)))
1299
1300 (define-public texlive-latex-oberdiek
1301 (package
1302 (name "texlive-latex-oberdiek")
1303 (version (number->string %texlive-revision))
1304 (source (origin
1305 (method svn-fetch)
1306 (uri (texlive-ref "latex" "oberdiek"))
1307 (file-name (string-append name "-" version "-checkout"))
1308 (sha256
1309 (base32
1310 "0aswvsxgsn709xmvpcg50d2xl7vcy1ckdxb9c1cligqqfjjvviqf"))))
1311 (build-system texlive-build-system)
1312 (arguments
1313 '(#:tex-directory "latex/oberdiek"
1314 #:build-targets '("oberdiek.ins")
1315 #:phases
1316 (modify-phases %standard-phases
1317 ;; "ifpdf.ins" is not generated, so we need to process the dtx file.
1318 (add-after 'unpack 'do-not-process-ifpdf.ins
1319 (lambda _
1320 (substitute* "oberdiek.ins"
1321 (("ifpdf.ins") "ifpdf.dtx"))
1322 #t)))))
1323 (home-page "https://www.ctan.org/pkg/oberdiek")
1324 (synopsis "Bundle of packages submitted by Heiko Oberdiek")
1325 (description
1326 "The bundle comprises various LaTeX packages, providing among others:
1327 better accessibility support for PDF files; extensible chemists reaction
1328 arrows; record information about document class(es) used; and many more.")
1329 (license license:lppl1.3+)))
1330
1331 (define-public texlive-latex-tools
1332 (package
1333 (name "texlive-latex-tools")
1334 (version (number->string %texlive-revision))
1335 (source (origin
1336 (method svn-fetch)
1337 (uri (texlive-ref "latex" "tools"))
1338 (file-name (string-append name "-" version "-checkout"))
1339 (sha256
1340 (base32
1341 "052a0pch2k5zls5jlay9xxcf93rw3i60a2x28y3ip3rhbsv3xgiz"))))
1342 (build-system texlive-build-system)
1343 (arguments
1344 '(#:tex-directory "latex/tools"
1345 #:build-targets '("tools.ins")))
1346 (home-page "https://www.ctan.org/pkg/latex-tools")
1347 (synopsis "LaTeX standard tools bundle")
1348 (description
1349 "This package is a collection of (variously) simple tools provided as
1350 part of the LaTeX required tools distribution, comprising the following
1351 packages: afterpage, array, bm, calc, dcolumn, delarray, enumerate, fileerr,
1352 fontsmpl, ftnright, hhline, indentfirst, layout, longtable, multicol,
1353 rawfonts, showkeys, somedefs, tabularx, theorem, trace, varioref, verbatim,
1354 xr, and xspace.")
1355 (license license:lppl1.3+)))
1356
1357 (define-public texlive-latex-url
1358 (package
1359 (name "texlive-latex-url")
1360 (version (number->string %texlive-revision))
1361 (source (origin
1362 (method svn-fetch)
1363 (uri (svn-reference
1364 (url (string-append "svn://www.tug.org/texlive/tags/"
1365 %texlive-tag "/Master/texmf-dist/"
1366 "/tex/latex/url"))
1367 (revision %texlive-revision)))
1368 (file-name (string-append name "-" version "-checkout"))
1369 (sha256
1370 (base32
1371 "184s2543cwia5l7iibhlkl1ffbncfhjpv5p56zq0c15by5sghlac"))))
1372 (build-system trivial-build-system)
1373 (arguments
1374 `(#:modules ((guix build utils))
1375 #:builder
1376 (begin
1377 (use-modules (guix build utils))
1378 (let ((target (string-append (assoc-ref %outputs "out")
1379 "/share/texmf-dist/tex/latex/url")))
1380 (mkdir-p target)
1381 (copy-recursively (assoc-ref %build-inputs "source") target)
1382 #t))))
1383 (home-page "https://www.ctan.org/pkg/url")
1384 (synopsis "Verbatim with URL-sensitive line breaks")
1385 (description "The command @code{\\url} is a form of verbatim command that
1386 allows linebreaks at certain characters or combinations of characters, accepts
1387 reconfiguration, and can usually be used in the argument to another command.
1388 The command is intended for email addresses, hypertext links,
1389 directories/paths, etc., which normally have no spaces, so by default the
1390 package ignores spaces in its argument. However, a package option allows
1391 spaces, which is useful for operating systems where spaces are a common part
1392 of file names.")
1393 ;; The license header states that it is under LPPL version 2 or later, but
1394 ;; the latest version is 1.3c.
1395 (license license:lppl1.3c+)))
1396
1397 (define-public texlive-latex-l3kernel
1398 (package
1399 (name "texlive-latex-l3kernel")
1400 (version (number->string %texlive-revision))
1401 (source (origin
1402 (method svn-fetch)
1403 (uri (texlive-ref "latex" "l3kernel"))
1404 (file-name (string-append name "-" version "-checkout"))
1405 (sha256
1406 (base32
1407 "0r0wfk594j8wkdqhh21haimwsfq8x5jch4ldm21hkzk5dnmvpbg6"))))
1408 (build-system texlive-build-system)
1409 (arguments
1410 '(#:tex-directory "latex/l3kernel"))
1411 (home-page "https://www.ctan.org/pkg/l3kernel")
1412 (synopsis "LaTeX3 programmers’ interface")
1413 (description
1414 "The l3kernel bundle provides an implementation of the LaTeX3
1415 programmers’ interface, as a set of packages that run under LaTeX 2e. The
1416 interface provides the foundation on which the LaTeX3 kernel and other future
1417 code are built: it is an API for TeX programmers. The packages are set up so
1418 that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
1419 (license license:lppl1.3c+)))
1420
1421 (define-public texlive-latex-l3packages
1422 (package
1423 (name "texlive-latex-l3packages")
1424 (version (number->string %texlive-revision))
1425 (source (origin
1426 (method svn-fetch)
1427 (uri (texlive-ref "latex" "l3packages"))
1428 (file-name (string-append name "-" version "-checkout"))
1429 (sha256
1430 (base32
1431 "16jplkvzdysfssijq9l051nsks65c2nrarsl17k8gjhc28yznj8y"))))
1432 (build-system texlive-build-system)
1433 (arguments
1434 '(#:tex-directory "latex/l3packages"
1435 ;; build-targets must be specified manually since they are in
1436 ;; sub-directories.
1437 #:build-targets '("l3keys2e.ins" "xparse.ins" "xfrac.ins" "xfp.ins" "xtemplate.ins")
1438 #:phases
1439 (modify-phases %standard-phases
1440 ;; All package sources are in sub-directories, so we need to add them
1441 ;; to TEXINPUTS.
1442 (add-after 'unpack 'set-TEXINPUTS
1443 (lambda _
1444 (let ((cwd (getcwd)))
1445 (setenv "TEXINPUTS"
1446 (string-append cwd "/l3keys2e:"
1447 cwd "/xparse:"
1448 cwd "/xfrac:"
1449 cwd "/xfp:"
1450 cwd "/xtemplate"
1451 ;; The terminating ":" is required to include the
1452 ;; l3kernel input as well.
1453 ":")))
1454 #t)))
1455 ))
1456 (inputs
1457 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
1458 (home-page "https://www.ctan.org/pkg/l3packages")
1459 (synopsis "High-level LaTeX3 concepts")
1460 (description
1461 "This bundle holds prototype implementations of concepts for a LaTeX
1462 designer interface, to be used with the experimental LaTeX kernel as
1463 programming tools and kernel sup­port. Packages provided in this release are:
1464
1465 @enumerate
1466 @item l3keys2e, which makes the facilities of the kernel module l3keys
1467 available for use by LaTeX 2e packages;
1468 @item xfrac, which provides flexible splitlevel fractions;
1469 @item xparse, which provides a high-level interface for declaring document
1470 commands; and
1471 @item xtemplate, which provides a means of defining generic functions using a
1472 key-value syntax.
1473 @end enumerate\n")
1474 (license license:lppl1.3c+)))
1475
1476 (define-public texlive-latex-fontspec
1477 (package
1478 (name "texlive-latex-fontspec")
1479 (version (number->string %texlive-revision))
1480 (source (origin
1481 (method svn-fetch)
1482 (uri (texlive-ref "latex" "fontspec"))
1483 (file-name (string-append name "-" version "-checkout"))
1484 (sha256
1485 (base32
1486 "1rx43y5xmjqvc27pjdnmqwp4pcw3czcfd6nfpmzc1gnqfl1hlc0q"))))
1487 (build-system texlive-build-system)
1488 (arguments
1489 '(#:tex-directory "latex/fontspec"
1490 #:build-targets '("fontspec.dtx")))
1491 (inputs
1492 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
1493 (home-page "https://www.ctan.org/pkg/fontspec")
1494 (synopsis "Advanced font selection in XeLaTeX and LuaLaTeX")
1495 (description
1496 "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
1497 automatic and unified interface to feature-rich AAT and OpenType fonts through
1498 the NFSS in LaTeX running on XeTeX or LuaTeX engines. The package requires
1499 the l3kernel and xparse bundles from the LaTeX 3 development team.")
1500 (license license:lppl1.3+)))
1501
1502 ;; The SVN directory contains little more than a dtx file that generates three
1503 ;; of the many lua files that should be installed as part of this package.
1504 ;; This is why we take the release from GitHub instead.
1505 (define-public texlive-luatex-lualibs
1506 (package
1507 (name "texlive-luatex-lualibs")
1508 (version "2.5")
1509 (source (origin
1510 (method url-fetch)
1511 (uri (string-append "https://github.com/lualatex/lualibs/"
1512 "releases/download/v"
1513 version "/lualibs.zip"))
1514 (file-name (string-append name "-" version ".zip"))
1515 (sha256
1516 (base32
1517 "1xx9blvrmx9hyhrl345lpai9m6xxnw997261a1ahn1bm5r2j5fqy"))))
1518 (build-system gnu-build-system)
1519 (arguments
1520 `(#:make-flags
1521 (list (string-append "DESTDIR="
1522 (assoc-ref %outputs "out")
1523 "/share/texmf-dist"))
1524 #:phases
1525 (modify-phases %standard-phases
1526 (delete 'configure))))
1527 (native-inputs
1528 `(("texlive-bin" ,texlive-bin)
1529 ("unzip" ,unzip)
1530 ("zip" ,zip)))
1531 (home-page "https://github.com/lualatex/lualibs")
1532 (synopsis "Lua modules for general programming (in the (La)TeX world)")
1533 (description
1534 "Lualibs is a collection of Lua modules useful for general programming.
1535 The bundle is based on Lua modules shipped with ConTeXt, and made available in
1536 this bundle for use independent of ConTeXt.")
1537 ;; GPL version 2 only
1538 (license license:gpl2)))
1539
1540 (define-public texlive-latex-amsmath
1541 (package
1542 (name "texlive-latex-amsmath")
1543 (version (number->string %texlive-revision))
1544 (source (origin
1545 (method svn-fetch)
1546 (uri (texlive-ref "latex" "amsmath"))
1547 (file-name (string-append name "-" version "-checkout"))
1548 (sha256
1549 (base32
1550 "178ywjpdlv78qmfzqdyn6gy14620zjsn2q9wap76fbr9s4hw6dba"))))
1551 (build-system texlive-build-system)
1552 (arguments '(#:tex-directory "latex/amsmath"))
1553 (home-page "https://www.ctan.org/pkg/amsmath")
1554 (synopsis "AMS mathematical facilities for LaTeX")
1555 (description
1556 "This is the principal package in the AMS-LaTeX distribution. It adapts
1557 for use in LaTeX most of the mathematical features found in AMS-TeX; it is
1558 highly recommended as an adjunct to serious mathematical typesetting in LaTeX.
1559 When amsmath is loaded, AMS-LaTeX packages @code{amsbsyamsbsy} (for bold
1560 symbols), @code{amsopnamsopn} (for operator names) and
1561 @code{amstextamstext} (for text embedded in mathematics) are also loaded.
1562 This package is part of the LaTeX required distribution; however, several
1563 contributed packages add still further to its appeal; examples are
1564 @code{empheqempheq}, which provides functions for decorating and highlighting
1565 mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar)
1566 definitions.")
1567 (license license:lppl1.3c+)))
1568
1569 (define-public texlive-latex-amscls
1570 (package
1571 (name "texlive-latex-amscls")
1572 (version (number->string %texlive-revision))
1573 (source (origin
1574 (method svn-fetch)
1575 (uri (texlive-ref "latex" "amscls"))
1576 (file-name (string-append name "-" version "-checkout"))
1577 (sha256
1578 (base32
1579 "0jmcr37mcdi7drczppvr6lmz5d5yd9m67ii79gp2nglg1xpw934j"))))
1580 (build-system texlive-build-system)
1581 (arguments
1582 `(#:tex-directory "latex/amscls"))
1583 (home-page "https://www.ctan.org/pkg/amscls")
1584 (synopsis "AMS document classes for LaTeX")
1585 (description
1586 "This bundle contains three AMS classes: @code{amsartamsart} (for writing
1587 articles for the AMS), @code{amsbookamsbook} (for books) and
1588 @code{amsprocamsproc} (for proceedings), together with some supporting
1589 material. The material is made available as part of the AMS-LaTeX
1590 distribution.")
1591 (license license:lppl1.3c+)))
1592
1593 (define-public texlive-latex-babel
1594 (package
1595 (name "texlive-latex-babel")
1596 (version (number->string %texlive-revision))
1597 (source (origin
1598 (method svn-fetch)
1599 (uri (texlive-ref "latex" "babel"))
1600 (file-name (string-append name "-" version "-checkout"))
1601 (sha256
1602 (base32
1603 "1n3i5adsyy7jw0imnzrm2i8wkf73i3mjk9h3ic8cb9cd19i4r9r3"))))
1604 (build-system texlive-build-system)
1605 (arguments
1606 '(#:tex-directory "generic/babel"
1607 #:phases
1608 (modify-phases %standard-phases
1609 ;; This package tries to produce babel.aux twice but refuses to
1610 ;; overwrite the first one.
1611 (add-before 'build 'fix-ins
1612 (lambda _
1613 (substitute* "babel.ins"
1614 (("askonceonly") "askforoverwritefalse"))
1615 #t)))))
1616 (home-page "https://www.ctan.org/pkg/babel")
1617 (synopsis "Multilingual support for Plain TeX or LaTeX")
1618 (description
1619 "The package manages culturally-determined typographical (and other)
1620 rules, and hyphenation patterns for a wide range of languages. A document may
1621 select a single language to be supported, or it may select several, in which
1622 case the document may switch from one language to another in a variety of
1623 ways. Babel uses contributed configuration files that provide the detail of
1624 what has to be done for each language. Users of XeTeX are advised to use the
1625 polyglossia package rather than Babel.")
1626 (license license:lppl1.3+)))
1627
1628 (define-public texlive-generic-babel-english
1629 (package
1630 (name "texlive-generic-babel-english")
1631 (version (number->string %texlive-revision))
1632 (source (origin
1633 (method svn-fetch)
1634 (uri (texlive-ref "generic" "babel-english"))
1635 (file-name (string-append name "-" version "-checkout"))
1636 (sha256
1637 (base32
1638 "1s404wbx91z5w65hm024kyl4h56zsa096irx18vsx8jvlmwsr5wc"))))
1639 (build-system texlive-build-system)
1640 (arguments '(#:tex-directory "generic/babel-english"))
1641 (home-page "https://www.ctan.org/pkg/babel-english")
1642 (synopsis "Babel support for English")
1643 (description
1644 "This package provides the language definition file for support of
1645 English in @code{babel}. Care is taken to select British hyphenation patterns
1646 for British English and Australian text, and default (\"american\") patterns
1647 for Canadian and USA text.")
1648 (license license:lppl1.3+)))
1649
1650 (define-public texlive-latex-cyrillic
1651 (package
1652 (name "texlive-latex-cyrillic")
1653 (version (number->string %texlive-revision))
1654 (source (origin
1655 (method svn-fetch)
1656 (uri (texlive-ref "latex" "cyrillic"))
1657 (file-name (string-append name "-" version "-checkout"))
1658 (sha256
1659 (base32
1660 "1mdhl35hwas68ki56qqngzar37dwv4mm64l2canihr255bz34lbv"))))
1661 (build-system texlive-build-system)
1662 (arguments
1663 '(#:tex-directory "latex/cyrillic"))
1664 (home-page "https://www.ctan.org/pkg/latex-cyrillic")
1665 (synopsis "Support for Cyrillic fonts in LaTeX")
1666 (description
1667 "This bundle of macros files provides macro support (including font
1668 encoding macros) for the use of Cyrillic characters in fonts encoded under the
1669 T2* and X2 encodings. These encodings cover (between them) pretty much every
1670 language that is written in a Cyrillic alphabet.")
1671 (license license:lppl1.3c+)))
1672
1673 (define-public texlive-latex-psnfss
1674 (package
1675 (name "texlive-latex-psnfss")
1676 (version (number->string %texlive-revision))
1677 (source (origin
1678 (method svn-fetch)
1679 (uri (texlive-ref "latex" "psnfss"))
1680 (file-name (string-append name "-" version "-checkout"))
1681 (sha256
1682 (base32
1683 "1920dcq8613yzprasbg80fh4fcjcidvvl54wkx438nimyxcri7qz"))))
1684 (build-system texlive-build-system)
1685 (arguments '(#:tex-directory "latex/psnfss"))
1686 (home-page "https://www.ctan.org/pkg/psnfss")
1687 (synopsis "Font support for common PostScript fonts")
1688 (description
1689 "The PSNFSS collection includes a set of files that provide a complete
1690 working setup of the LaTeX font selection scheme (NFSS2) for use with common
1691 PostScript fonts. It covers the so-called \"Base\" fonts (which are built
1692 into any Level 2 PostScript printing device and the Ghostscript interpreter)
1693 and a number of free fonts. It provides font definition files, macros and
1694 font metrics. The bundle as a whole is part of the LaTeX required set of
1695 packages.")
1696 (license license:lppl1.2+)))
1697
1698 (define-public texlive-union
1699 (lambda* (#:optional (packages '()))
1700 "Return 'texlive-union' package which is a union of PACKAGES and the
1701 standard LaTeX packages."
1702 (let ((default-packages
1703 (list texlive-bin
1704 texlive-dvips
1705 texlive-fontname
1706 texlive-fonts-cm
1707 texlive-fonts-latex
1708 texlive-metafont-base
1709 texlive-latex-base
1710 ;; LaTeX packages from the "required" set.
1711 texlive-latex-amsmath
1712 texlive-latex-amscls
1713 texlive-latex-babel
1714 texlive-generic-babel-english
1715 texlive-latex-cyrillic
1716 texlive-latex-graphics
1717 texlive-latex-psnfss
1718 texlive-latex-tools)))
1719 (package
1720 (name "texlive-union")
1721 (version (number->string %texlive-revision))
1722 (source #f)
1723 (build-system trivial-build-system)
1724 (arguments
1725 '(#:modules ((guix build union)
1726 (guix build utils)
1727 (guix build texlive-build-system)
1728 (guix build gnu-build-system)
1729 (guix build gremlin)
1730 (guix elf))
1731 #:builder
1732 (begin
1733 (use-modules (ice-9 match)
1734 (srfi srfi-26)
1735 (guix build union)
1736 (guix build utils)
1737 (guix build texlive-build-system))
1738 (let* ((out (assoc-ref %outputs "out"))
1739 (texmf.cnf (string-append out "/share/texmf-dist/web2c/texmf.cnf")))
1740 ;; Build a modifiable union of all inputs (but exclude bash)
1741 (match (filter (match-lambda
1742 ((name . _)
1743 (not (string=? "bash" name))))
1744 %build-inputs)
1745 (((names . directories) ...)
1746 (union-build (assoc-ref %outputs "out")
1747 directories
1748 #:create-all-directories? #t
1749 #:log-port (%make-void-port "w"))))
1750
1751 ;; The configuration file "texmf.cnf" is provided by the
1752 ;; "texlive-bin" package. We take it and override only the
1753 ;; setting for TEXMFROOT and TEXMF. This file won't be consulted
1754 ;; by default, though, so we still need to set TEXMFCNF.
1755 (substitute* texmf.cnf
1756 (("^TEXMFROOT = .*")
1757 (string-append "TEXMFROOT = " out "/share\n"))
1758 (("^TEXMF = .*")
1759 "TEXMF = $TEXMFROOT/share/texmf-dist\n"))
1760 (setenv "PATH" (string-append (assoc-ref %build-inputs "bash")
1761 "/bin"))
1762 (for-each
1763 (cut wrap-program <>
1764 `("TEXMFCNF" ":" = (,(dirname texmf.cnf)))
1765 `("TEXMF" ":" = (,(string-append out "/share/texmf-dist"))))
1766 (find-files (string-append out "/bin") ".*"))
1767 #t))))
1768 (inputs
1769 `(("bash" ,bash)
1770 ,@(map (lambda (package)
1771 (list (package-name package) package))
1772 (append default-packages packages))))
1773 (home-page (package-home-page texlive-bin))
1774 (synopsis "Union of TeX Live packages")
1775 (description "This package provides a subset of the TeX Live
1776 distribution.")
1777 (license (fold (lambda (package result)
1778 (match (package-license package)
1779 ((lst ...)
1780 (append lst result))
1781 ((? license:license? license)
1782 (cons license result))))
1783 '()
1784 (append default-packages packages)))))))
1785
1786 (define-public texlive-tiny
1787 (package
1788 (inherit (texlive-union))
1789 (name "texlive-tiny")
1790 (description "This is a very limited subset of the TeX Live distribution.
1791 It includes little more than the required set of LaTeX packages.")))
1792
1793 (define-public texlive-latex-amsrefs
1794 (package
1795 (name "texlive-latex-amsrefs")
1796 (version (number->string %texlive-revision))
1797 (source (origin
1798 (method svn-fetch)
1799 (uri (texlive-ref "latex" "amsrefs"))
1800 (file-name (string-append name "-" version "-checkout"))
1801 (sha256
1802 (base32
1803 "15i4k479dwrpr0kspmm70g1yn4p3dkh0whyzmr93hph9bggnh1i1"))))
1804 (build-system texlive-build-system)
1805 (arguments '(#:tex-directory "latex/amsrefs"))
1806 (home-page "https://www.ctan.org/pkg/amsrefs")
1807 (synopsis "LaTeX-based replacement for BibTeX")
1808 (description
1809 "Amsrefs is a LaTeX package for bibliographies that provides an archival
1810 data format similar to the format of BibTeX database files, but adapted to
1811 make direct processing by LaTeX easier. The package can be used either in
1812 conjunction with BibTeX or as a replacement for BibTeX.")
1813 (license license:lppl1.3+)))
1814
1815 (define-public texlive-latex-bigfoot
1816 (package
1817 (name "texlive-latex-bigfoot")
1818 (version (number->string %texlive-revision))
1819 (source (origin
1820 (method svn-fetch)
1821 (uri (texlive-ref "latex" "bigfoot"))
1822 (file-name (string-append name "-" version "-checkout"))
1823 (sha256
1824 (base32
1825 "092g8alnsdwlgl1isdnqrr32l161994295kadr1n05d81xgj5wnv"))))
1826 (build-system texlive-build-system)
1827 (arguments
1828 '(#:tex-directory "latex/bigfoot"
1829 #:phases
1830 (modify-phases %standard-phases
1831 (add-after 'unpack 'remove-generated-file
1832 (lambda _
1833 (for-each delete-file (find-files "." "\\.drv$"))
1834 #t)))))
1835 (home-page "https://www.ctan.org/pkg/bigfoot")
1836 (synopsis "Footnotes for critical editions")
1837 (description
1838 "This package aims to provide a one-stop solution to requirements for
1839 footnotes. It offers: Multiple footnote apparatus superior to that of
1840 @code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
1841 into a single paragraph (this choice may be selected per footnote series);
1842 Things you might have expected (such as @code{\\verb}-like material in
1843 footnotes, and color selections over page breaks) now work. Note that the
1844 majority of the bigfoot package's interface is identical to that of
1845 @code{manyfoot}; users should seek information from that package's
1846 documentation. The bigfoot bundle also provides the @code{perpage} and
1847 @code{suffix} packages.")
1848 (license license:gpl2+)))
1849
1850 (define-public texlive-latex-blindtext
1851 (package
1852 (name "texlive-latex-blindtext")
1853 (version (number->string %texlive-revision))
1854 (source (origin
1855 (method svn-fetch)
1856 (uri (texlive-ref "latex" "blindtext"))
1857 (file-name (string-append name "-" version "-checkout"))
1858 (sha256
1859 (base32
1860 "1jrja9b1pzdh9zgv1jh807w4xijqja58n2mqny6dkwicv8qfgbfg"))))
1861 (build-system texlive-build-system)
1862 (arguments '(#:tex-directory "latex/blindtext"))
1863 (home-page "https://www.ctan.org/pkg/blindtext")
1864 (synopsis "Producing 'blind' text for testing")
1865 (description
1866 "The package provides the commands @code{\\blindtext} and
1867 @code{\\Blindtext} for creating \"blind\" text useful in testing new classes
1868 and packages, and @code{\\blinddocument}, @code{\\Blinddocument} for creating
1869 an entire random document with sections, lists, mathematics, etc. The package
1870 supports three languages, @code{english}, @code{(n)german} and @code{latin};
1871 the @code{latin} option provides a short \"lorem ipsum\" (for a fuller \"lorem
1872 ipsum\" text, see the @code{lipsum} package).")
1873 (license license:lppl)))
1874
1875 (define-public texlive-latex-dinbrief
1876 (package
1877 (name "texlive-latex-dinbrief")
1878 (version (number->string %texlive-revision))
1879 (source (origin
1880 (method svn-fetch)
1881 (uri (texlive-ref "latex" "dinbrief"))
1882 (file-name (string-append name "-" version "-checkout"))
1883 (sha256
1884 (base32
1885 "0lb0kiy8fxzl6cnhcw1sggy6jrjvcd6kj1kkw3k9lkimm388yjz6"))))
1886 (build-system texlive-build-system)
1887 (arguments
1888 '(#:tex-directory "latex/dinbrief"
1889 #:phases
1890 (modify-phases %standard-phases
1891 (add-after 'unpack 'remove-generated-file
1892 (lambda _
1893 (delete-file "dinbrief.drv")
1894 #t)))))
1895 (home-page "https://www.ctan.org/pkg/dinbrief")
1896 (synopsis "German letter DIN style")
1897 (description
1898 "This package implements a document layout for writing letters according
1899 to the rules of DIN (Deutsches Institut für Normung, German standardisation
1900 institute). A style file for LaTeX 2.09 (with limited support of the
1901 features) is part of the package. Since the letter layout is based on a
1902 German standard, the user guide is written in German, but most macros have
1903 English names from which the user can recognize what they are used for. In
1904 addition there are example files showing how letters may be created with the
1905 package.")
1906 (license license:lppl)))
1907
1908 (define-public texlive-latex-draftwatermark
1909 (package
1910 (name "texlive-latex-draftwatermark")
1911 (version (number->string %texlive-revision))
1912 (source (origin
1913 (method svn-fetch)
1914 (uri (texlive-ref "latex" "draftwatermark"))
1915 (file-name (string-append name "-" version "-checkout"))
1916 (sha256
1917 (base32
1918 "1zyl2pcz2x529gzj5m93a1s4ipymdabf7qdjl3l1673pizd4hfyv"))))
1919 (build-system texlive-build-system)
1920 (arguments '(#:tex-directory "latex/draftwatermark"))
1921 (home-page "https://www.ctan.org/pkg/draftwatermark")
1922 (synopsis "Put a grey textual watermark on document pages")
1923 (description
1924 "This package provides a means to add a textual, light grey watermark on
1925 every page or on the first page of a document. Typical usage may consist in
1926 writing words such as DRAFT or CONFIDENTIAL across document pages. The
1927 package performs a similar function to that of @code{draftcopy}, but its
1928 implementation is output device independent, and made very simple by relying
1929 on everypage.")
1930 (license license:lppl1.3+)))
1931
1932 (define-public texlive-latex-environ
1933 (package
1934 (name "texlive-latex-environ")
1935 (version (number->string %texlive-revision))
1936 (source (origin
1937 (method svn-fetch)
1938 (uri (texlive-ref "latex" "environ"))
1939 (file-name (string-append name "-" version "-checkout"))
1940 (sha256
1941 (base32
1942 "06h28b26dyjkj9shksphgqfv4130jfkwhbw737hxn7d3yvdfffyd"))))
1943 (build-system texlive-build-system)
1944 (arguments '(#:tex-directory "latex/environ"))
1945 (home-page "https://www.ctan.org/pkg/environ")
1946 (synopsis "New interface for environments in LaTeX")
1947 (description
1948 "This package provides the @code{\\collect@@body} command (as in
1949 @code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
1950 for collecting the body text of an environment. These commands are used to
1951 define a new author interface to creating new environments.")
1952 (license license:lppl)))
1953
1954 (define-public texlive-latex-eqparbox
1955 (package
1956 (name "texlive-latex-eqparbox")
1957 (version (number->string %texlive-revision))
1958 (source (origin
1959 (method svn-fetch)
1960 (uri (texlive-ref "latex" "eqparbox"))
1961 (file-name (string-append name "-" version "-checkout"))
1962 (sha256
1963 (base32
1964 "0pvmhsd4xmpil0m3c7qcgwilbk266mlkzv03g0jr8r3zd8jxlyzq"))))
1965 (build-system texlive-build-system)
1966 (arguments '(#:tex-directory "latex/eqparbox"))
1967 (home-page "https://www.ctan.org/pkg/eqparbox")
1968 (synopsis "Create equal-widthed parboxes")
1969 (description
1970 "LaTeX users sometimes need to ensure that two or more blocks of text
1971 occupy the same amount of horizontal space on the page. To that end, the
1972 @code{eqparbox} package defines a new command, @code{\\eqparbox}, which works
1973 just like @code{\\parbox}, except that instead of specifying a width, one
1974 specifies a tag. All @code{eqparbox}es with the same tag---regardless of
1975 where they are in the document---will stretch to fit the widest
1976 @code{eqparbox} with that tag. This simple, equal-width mechanism can be used
1977 for a variety of alignment purposes, as is evidenced by the examples in
1978 @code{eqparbox}'s documentation. Various derivatives of @code{\\eqparbox} are
1979 also provided.")
1980 (license license:lppl1.3+)))
1981
1982 (define-public texlive-latex-expdlist
1983 (package
1984 (name "texlive-latex-expdlist")
1985 (version (number->string %texlive-revision))
1986 (source (origin
1987 (method svn-fetch)
1988 (uri (texlive-ref "latex" "expdlist"))
1989 (file-name (string-append name "-" version "-checkout"))
1990 (sha256
1991 (base32
1992 "1x7byk6x10njir3y9rm56glhdzrxwqag7gsnw2sqn1czlq525w7r"))))
1993 (build-system texlive-build-system)
1994 (arguments
1995 '(#:tex-directory "latex/expdlist"
1996 #:phases
1997 (modify-phases %standard-phases
1998 (add-after 'unpack 'remove-generated-file
1999 (lambda _
2000 (for-each delete-file
2001 (find-files "." "\\.drv$"))
2002 #t)))))
2003 (home-page "https://www.ctan.org/pkg/expdlist")
2004 (synopsis "Expanded description environments")
2005 (description
2006 "The package provides additional features for the LaTeX
2007 @code{description} environment, including adjustable left margin. The package
2008 also allows the user to \"break\" a list (for example, to interpose a comment)
2009 without affecting the structure of the list (this works for @code{itemize} and
2010 @code{enumerate} lists, and numbered lists remain in sequence).")
2011 (license license:lppl)))
2012
2013 (define-public texlive-latex-filemod
2014 (package
2015 (name "texlive-latex-filemod")
2016 (version (number->string %texlive-revision))
2017 (source (origin
2018 (method svn-fetch)
2019 (uri (svn-reference
2020 (url (string-append "svn://www.tug.org/texlive/tags/"
2021 %texlive-tag "/Master/texmf-dist/"
2022 "/tex/latex/filemod"))
2023 (revision %texlive-revision)))
2024 (file-name (string-append name "-" version "-checkout"))
2025 (sha256
2026 (base32
2027 "0vpxilfw69xv78f03g0j0zw0bw4qcn36whqp8phcq48qk1ax2kr2"))))
2028 (build-system trivial-build-system)
2029 (arguments
2030 `(#:modules ((guix build utils))
2031 #:builder
2032 (begin
2033 (use-modules (guix build utils))
2034 (let ((target (string-append (assoc-ref %outputs "out")
2035 "/share/texmf-dist/tex/latex/filemod")))
2036 (mkdir-p target)
2037 (copy-recursively (assoc-ref %build-inputs "source") target)
2038 #t))))
2039 (home-page "https://www.ctan.org/pkg/filemod")
2040 (synopsis "Provide file modification times, and compare them")
2041 (description
2042 "This package provides macros to read and compare the modification dates
2043 of files. The files may be @code{.tex} files, images or other files (as long
2044 as they can be found by LaTeX). It uses the @code{\\pdffilemoddate} primitive
2045 of pdfLaTeX to find the file modification date as PDF date string, parses the
2046 string and returns the value to the user. The package will also work for DVI
2047 output with recent versions of the LaTeX compiler which uses pdfLaTeX in DVI
2048 mode. The functionality is provided by purely expandable macros or by faster
2049 but non-expandable ones.")
2050 (license license:lppl1.3+)))
2051
2052 (define-public texlive-latex-ifplatform
2053 (package
2054 (name "texlive-latex-ifplatform")
2055 (version (number->string %texlive-revision))
2056 (source (origin
2057 (method svn-fetch)
2058 (uri (texlive-ref "latex" "ifplatform"))
2059 (file-name (string-append name "-" version "-checkout"))
2060 (sha256
2061 (base32
2062 "11gvvjvmdfs9b7mm19yf80zwkx49jqcbq6g8qb9y5ns1r1qvnixp"))))
2063 (build-system texlive-build-system)
2064 (arguments '(#:tex-directory "latex/ifplatform"))
2065 (home-page "https://www.ctan.org/pkg/ifplatform")
2066 (synopsis "Conditionals to test which platform is being used")
2067 (description
2068 "This package uses the (La)TeX extension @code{-shell-escape} to
2069 establish whether the document is being processed on a Windows or on a
2070 Unix-like system, or on Cygwin (Unix environment over a Windows system).
2071 Booleans provided are: @code{\\ifwindows}, @code{\\iflinux}, @code{\\ifmacosx}
2072 and @code{\\ifcygwin}. The package also preserves the output of @code{uname}
2073 on a Unix-like system, which may be used to distinguish between various
2074 classes of systems.")
2075 (license license:lppl)))
2076
2077 (define-public texlive-latex-natbib
2078 (package
2079 (name "texlive-latex-natbib")
2080 (version (number->string %texlive-revision))
2081 (source (origin
2082 (method svn-fetch)
2083 (uri (texlive-ref "latex" "natbib"))
2084 (file-name (string-append name "-" version "-checkout"))
2085 (sha256
2086 (base32
2087 "0aqliq0nwblxyrzhwhv77pnmk7qh2y3prgq7z7qhwcbgz5kisld7"))))
2088 (build-system texlive-build-system)
2089 (arguments '(#:tex-directory "latex/natbib"))
2090 (home-page "https://www.ctan.org/pkg/natbib")
2091 (synopsis "Flexible bibliography support")
2092 (description
2093 "This bundle provides a package that implements both author-year and
2094 numbered references, as well as much detailed of support for other
2095 bibliography use. Also provided are versions of the standard BibTeX styles
2096 that are compatible with @code{natbib}: @code{plainnat}, @code{unsrtnat},
2097 @code{abbrnat}. The bibliography styles produced by @code{custom-bib} are
2098 designed from the start to be compatible with @code{natbib}.")
2099 (license license:lppl)))
2100
2101 (define-public texlive-latex-psfrag
2102 (package
2103 (name "texlive-latex-psfrag")
2104 (version (number->string %texlive-revision))
2105 (source (origin
2106 (method svn-fetch)
2107 (uri (texlive-ref "latex" "psfrag"))
2108 (file-name (string-append name "-" version "-checkout"))
2109 (sha256
2110 (base32
2111 "1dxbl5il7wbbsp0v45vk884xi1192wxw03849pb1g5q4x808n352"))))
2112 (build-system texlive-build-system)
2113 (arguments '(#:tex-directory "latex/psfrag"))
2114 (home-page "https://www.ctan.org/pkg/psfrag")
2115 (synopsis "Replace strings in encapsulated PostScript figures")
2116 (description
2117 "This package allows LaTeX constructions (equations, picture
2118 environments, etc.) to be precisely superimposed over Encapsulated PostScript
2119 figures, using your own favorite drawing tool to create an EPS figure and
2120 placing simple text \"tags\" where each replacement is to be placed, with
2121 PSfrag automatically removing these tags from the figure and replacing them
2122 with a user specified LaTeX construction, properly aligned, scaled, and/or
2123 rotated.")
2124 (license (license:fsf-free "file://psfrag.dtx"))))
2125
2126 (define-public texlive-latex-pstool
2127 (package
2128 (name "texlive-latex-pstool")
2129 (version (number->string %texlive-revision))
2130 (source (origin
2131 (method svn-fetch)
2132 (uri (texlive-ref "latex" "pstool"))
2133 (file-name (string-append name "-" version "-checkout"))
2134 (sha256
2135 (base32
2136 "1kwlk1x67lad4xb7gpkxqgdlxwpi6nvq1r9wika7m92abmyf18h3"))))
2137 (build-system texlive-build-system)
2138 (arguments
2139 '(#:tex-directory "latex/pstool"
2140 #:tex-format "latex"))
2141 (inputs
2142 `(("texlive-fonts-cm" ,texlive-fonts-cm)
2143 ("texlive-latex-filecontents" ,texlive-latex-filecontents)))
2144 (propagated-inputs
2145 `(("texlive-latex-bigfoot" ,texlive-latex-bigfoot)
2146 ("texlive-latex-filemod" ,texlive-latex-filemod)
2147 ("texlive-latex-graphics" ,texlive-latex-graphics)
2148 ("texlive-latex-ifplatform" ,texlive-latex-ifplatform)
2149 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
2150 ("texlive-latex-psfrag" ,texlive-latex-psfrag)
2151 ("texlive-latex-trimspaces" ,texlive-latex-trimspaces)))
2152 (home-page "https://www.ctan.org/pkg/pstool")
2153 (synopsis "Process PostScript graphisc within pdfLaTeX documents")
2154 (description
2155 "This is a package for processing PostScript graphics with @code{psfrag}
2156 labels within pdfLaTeX documents. Every graphic is compiled individually,
2157 drastically speeding up compilation time when only a single figure needs
2158 re-processing.")
2159 (license license:lppl)))
2160
2161 (define-public texlive-latex-seminar
2162 (package
2163 (name "texlive-latex-seminar")
2164 (version (number->string %texlive-revision))
2165 (source (origin
2166 (method svn-fetch)
2167 (uri (svn-reference
2168 (url (string-append "svn://www.tug.org/texlive/tags/"
2169 %texlive-tag "/Master/texmf-dist/"
2170 "/tex/latex/seminar"))
2171 (revision %texlive-revision)))
2172 (file-name (string-append name "-" version "-checkout"))
2173 (sha256
2174 (base32
2175 "0y4i651b75y6006n03x8n86bsqvjsailvvz9bhzy51dzsznqidq0"))))
2176 (build-system texlive-build-system)
2177 (arguments '(#:tex-directory "latex/seminar"))
2178 (home-page "https://www.ctan.org/pkg/seminar")
2179 (synopsis "Make overhead slides")
2180 ;; TODO: This package may need fancybox and xcomment at runtime.
2181 (description
2182 "This package provides a class that produces overhead
2183 slides (transparencies), with many facilities. Seminar is not nowadays
2184 reckoned a good basis for a presentation — users are advised to use more
2185 recent classes such as powerdot or beamer, both of which are tuned to
2186 21st-century presentation styles.")
2187 (license license:lppl1.2+)))
2188
2189 (define-public texlive-latex-trimspaces
2190 (package
2191 (name "texlive-latex-trimspaces")
2192 (version (number->string %texlive-revision))
2193 (source (origin
2194 (method svn-fetch)
2195 (uri (texlive-ref "latex" "trimspaces"))
2196 (file-name (string-append name "-" version "-checkout"))
2197 (sha256
2198 (base32
2199 "0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
2200 (build-system texlive-build-system)
2201 (arguments
2202 '(#:tex-directory "latex/trimspaces"
2203 #:tex-format "latex"
2204 #:phases
2205 (modify-phases %standard-phases
2206 (add-after 'unpack 'fix-bug
2207 (lambda _
2208 ;; The "ins" file refers to the wrong source file.
2209 (substitute* "trimspaces.ins"
2210 (("pstool.tex") "trimspaces.tex"))
2211 #t)))))
2212 (inputs
2213 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
2214 (home-page "https://www.ctan.org/pkg/trimspaces")
2215 (synopsis "Trim spaces around an argument or within a macro")
2216 (description
2217 "This very short package allows you to expandably remove spaces around a
2218 token list (commands are provided to remove spaces before, spaces after, or
2219 both); or to remove surrounding spaces within a macro definition, or to define
2220 space-stripped macros.")
2221 (license license:lppl)))
2222
2223 (define-public texlive-latex-capt-of
2224 (package
2225 (name "texlive-latex-capt-of")
2226 (version (number->string %texlive-revision))
2227 (source (origin
2228 (method svn-fetch)
2229 (uri (svn-reference
2230 (url (string-append "svn://www.tug.org/texlive/tags/"
2231 %texlive-tag "/Master/texmf-dist/"
2232 "/tex/latex/capt-of"))
2233 (revision %texlive-revision)))
2234 (file-name (string-append name "-" version "-checkout"))
2235 (sha256
2236 (base32
2237 "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x"))))
2238 (build-system trivial-build-system)
2239 (arguments
2240 `(#:modules ((guix build utils))
2241 #:builder
2242 (begin
2243 (use-modules (guix build utils))
2244 (let ((target (string-append (assoc-ref %outputs "out")
2245 "/share/texmf-dist/tex/latex/capt-of")))
2246 (mkdir-p target)
2247 (copy-recursively (assoc-ref %build-inputs "source") target)
2248 #t))))
2249 (home-page "https://www.ctan.org/pkg/capt-of")
2250 (synopsis "Captions on more than floats")
2251 (description
2252 "This package defines a command @code{\\captionof} for putting a caption
2253 to something that's not a float.")
2254 (license license:lppl)))
2255
2256 (define-public texlive-latex-etoolbox
2257 (package
2258 (name "texlive-latex-etoolbox")
2259 (version (number->string %texlive-revision))
2260 (source (origin
2261 (method svn-fetch)
2262 (uri (svn-reference
2263 (url (string-append "svn://www.tug.org/texlive/tags/"
2264 %texlive-tag "/Master/texmf-dist/"
2265 "/tex/latex/etoolbox"))
2266 (revision %texlive-revision)))
2267 (file-name (string-append name "-" version "-checkout"))
2268 (sha256
2269 (base32
2270 "0016bscnpima9krrg2569mva78xzwnygzlvg87dznsm6gf8g589v"))))
2271 (build-system trivial-build-system)
2272 (arguments
2273 `(#:modules ((guix build utils))
2274 #:builder
2275 (begin
2276 (use-modules (guix build utils))
2277 (let ((target (string-append (assoc-ref %outputs "out")
2278 "/share/texmf-dist/tex/latex/etoolbox")))
2279 (mkdir-p target)
2280 (copy-recursively (assoc-ref %build-inputs "source") target)
2281 #t))))
2282 (home-page "https://www.ctan.org/pkg/etoolbox")
2283 (synopsis "e-TeX tools for LaTeX")
2284 (description
2285 "This package is a toolbox of programming facilities geared primarily
2286 towards LaTeX class and package authors. It provides LaTeX frontends to some
2287 of the new primitives provided by e-TeX as well as some generic tools which
2288 are not strictly related to e-TeX but match the profile of this package. The
2289 package provides functions that seem to offer alternative ways of implementing
2290 some LaTeX kernel commands; nevertheless, the package will not modify any part
2291 of the LaTeX kernel.")
2292 (license license:lppl1.3+)))
2293
2294 (define-public texlive-latex-fncychap
2295 (package
2296 (name "texlive-latex-fncychap")
2297 (version (number->string %texlive-revision))
2298 (source (origin
2299 (method svn-fetch)
2300 (uri (svn-reference
2301 (url (string-append "svn://www.tug.org/texlive/tags/"
2302 %texlive-tag "/Master/texmf-dist/"
2303 "/tex/latex/fncychap"))
2304 (revision %texlive-revision)))
2305 (file-name (string-append name "-" version "-checkout"))
2306 (sha256
2307 (base32
2308 "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
2309 (build-system trivial-build-system)
2310 (arguments
2311 `(#:modules ((guix build utils))
2312 #:builder
2313 (begin
2314 (use-modules (guix build utils))
2315 (let ((target (string-append (assoc-ref %outputs "out")
2316 "/share/texmf-dist/tex/latex/fncychap")))
2317 (mkdir-p target)
2318 (copy-recursively (assoc-ref %build-inputs "source") target)
2319 #t))))
2320 (home-page "https://www.ctan.org/pkg/fncychap")
2321 (synopsis "Seven predefined chapter heading styles")
2322 (description
2323 "This package provides seven predefined chapter heading styles. Each
2324 style can be modified using a set of simple commands. Optionally one can
2325 modify the formatting routines in order to create additional chapter
2326 headings.")
2327 (license license:lppl1.3+)))
2328
2329 (define-public texlive-latex-framed
2330 (package
2331 (name "texlive-latex-framed")
2332 (version (number->string %texlive-revision))
2333 (source (origin
2334 (method svn-fetch)
2335 (uri (svn-reference
2336 (url (string-append "svn://www.tug.org/texlive/tags/"
2337 %texlive-tag "/Master/texmf-dist/"
2338 "/tex/latex/framed"))
2339 (revision %texlive-revision)))
2340 (file-name (string-append name "-" version "-checkout"))
2341 (sha256
2342 (base32
2343 "14a4ydqsvp3vcfavl21jrv0ybiqypaaqzg2q2cs3rzkandg7w98x"))))
2344 (build-system trivial-build-system)
2345 (arguments
2346 `(#:modules ((guix build utils))
2347 #:builder
2348 (begin
2349 (use-modules (guix build utils))
2350 (let ((target (string-append (assoc-ref %outputs "out")
2351 "/share/texmf-dist/tex/latex/framed")))
2352 (mkdir-p target)
2353 (copy-recursively (assoc-ref %build-inputs "source") target)
2354 #t))))
2355 (home-page "https://www.ctan.org/pkg/framed")
2356 (synopsis "Framed or shaded regions that can break across pages")
2357 (description
2358 "The package creates three environments: @code{framed}, which puts an
2359 ordinary frame box around the region, @code{shaded}, which shades the region,
2360 and @code{leftbar}, which places a line at the left side. The environments
2361 allow a break at their start (the @code{\\FrameCommand} enables creation of a
2362 title that is “attached” to the environment); breaks are also allowed in the
2363 course of the framed/shaded matter. There is also a command
2364 @code{\\MakeFramed} to make your own framed-style environments.")
2365 ;; The header states: "These macros may be freely transmitted, reproduced,
2366 ;; or modified for any purpose provided that this notice is left intact."
2367 (license (license:fsf-free "file://framed.sty"))))
2368
2369 (define-public texlive-latex-g-brief
2370 (package
2371 (name "texlive-latex-g-brief")
2372 (version (number->string %texlive-revision))
2373 (source (origin
2374 (method svn-fetch)
2375 (uri (texlive-ref "latex" "g-brief"))
2376 (file-name (string-append name "-" version "-checkout"))
2377 (sha256
2378 (base32
2379 "0sikazkg0dpkcpzlbqw8qzxr81paf2f443vsrh14jnw7s4gswvc5"))))
2380 (build-system texlive-build-system)
2381 (arguments
2382 '(#:tex-directory "latex/g-brief"
2383 #:phases
2384 (modify-phases %standard-phases
2385 (add-after 'unpack 'remove-generated-file
2386 (lambda _
2387 (delete-file "g-brief.drv")
2388 #t)))))
2389 (home-page "https://www.ctan.org/pkg/g-brief")
2390 (synopsis "Letter document class")
2391 (description
2392 "This package is designed for formatting formless letters in German; it
2393 can also be used for English (by those who can read the documentation). There
2394 are LaTeX 2.09 @code{documentstyle} and LaTeX 2e class files for both an
2395 \"old\" and a \"new\" version of g-brief.")
2396 (license license:lppl)))
2397
2398 (define-public texlive-latex-galois
2399 (package
2400 (name "texlive-latex-galois")
2401 (version (number->string %texlive-revision))
2402 (source (origin
2403 (method svn-fetch)
2404 (uri (texlive-ref "latex" "galois"))
2405 (file-name (string-append name "-" version "-checkout"))
2406 (sha256
2407 (base32
2408 "0d4l0msk8j5pi95xnmm9wygv1vbpkwkv5amx9l0km86cs79jpp1h"))))
2409 (build-system texlive-build-system)
2410 (arguments '(#:tex-directory "latex/galois"))
2411 (home-page "https://www.ctan.org/pkg/galois")
2412 (synopsis "Typeset Galois connections")
2413 (description
2414 "The package deals with connections in two-dimensional style, optionally
2415 in colour.")
2416 (license license:lppl)))
2417
2418 (define-public texlive-latex-gcite
2419 (package
2420 (name "texlive-latex-gcite")
2421 (version (number->string %texlive-revision))
2422 (source (origin
2423 (method svn-fetch)
2424 (uri (texlive-ref "latex" "gcite"))
2425 (file-name (string-append name "-" version "-checkout"))
2426 (sha256
2427 (base32
2428 "03g9by54yrypn599y98r1xh7qw0bbbmpzq0bfwpj6j5q5rkl1mfa"))))
2429 (build-system texlive-build-system)
2430 (arguments '(#:tex-directory "latex/gcite"))
2431 (home-page "https://www.ctan.org/pkg/gcite")
2432 (synopsis "Citations in a reader-friendly style")
2433 (description
2434 "The package allows citations in the German style, which is considered by
2435 many to be particularly reader-friendly. The citation provides a small amount
2436 of bibliographic information in a footnote on the page where each citation is
2437 made. It combines a desire to eliminate unnecessary page-turning with the
2438 look-up efficiency afforded by numeric citations. The package makes use of
2439 BibLaTeX, and is considered experimental.")
2440 (license license:lppl1.3+)))
2441
2442 (define-public texlive-latex-geometry
2443 (package
2444 (name "texlive-latex-geometry")
2445 (version (number->string %texlive-revision))
2446 (source (origin
2447 (method svn-fetch)
2448 (uri (texlive-ref "latex" "geometry"))
2449 (file-name (string-append name "-" version "-checkout"))
2450 (sha256
2451 (base32
2452 "1r2kfcwclg33yk5z8mvlagwxj7nr1mc3w4bdpmhrwv6dn8mrbvw8"))))
2453 (build-system texlive-build-system)
2454 (arguments '(#:tex-directory "latex/geometry"))
2455 (home-page "https://www.ctan.org/pkg/geometry")
2456 (synopsis "Flexible and complete interface to document dimensions")
2457 (description
2458 "This package provides an easy and flexible user interface to customize
2459 page layout, implementing auto-centering and auto-balancing mechanisms so that
2460 the users have only to give the least description for the page layout. The
2461 package knows about all the standard paper sizes, so that the user need not
2462 know what the nominal \"real\" dimensions of the paper are, just its standard
2463 name (such as a4, letter, etc.). An important feature is the package's
2464 ability to communicate the paper size it's set up to the output.")
2465 (license license:lppl)))
2466
2467 (define-public texlive-latex-mdwtools
2468 (package
2469 (name "texlive-latex-mdwtools")
2470 (version (number->string %texlive-revision))
2471 (source (origin
2472 (method svn-fetch)
2473 (uri (texlive-ref "latex" "mdwtools"))
2474 (file-name (string-append name "-" version "-checkout"))
2475 (sha256
2476 (base32
2477 "0caxs74hla28hc67csf5i5ahadx97w8vxh3mdmsprxbpd1mr7ssg"))))
2478 (build-system texlive-build-system)
2479 (arguments '(#:tex-directory "latex/mdwtools"))
2480 (home-page "https://www.ctan.org/pkg/mdwtools")
2481 (synopsis "Miscellaneous tools by Mark Wooding")
2482 (description
2483 "This collection of tools includes: @code{atsupport} for short commands
2484 starting with @code{@@}, macros to sanitize the OT1 encoding of the
2485 @code{cmtt} fonts; a @code{doafter} command; improved @code{footnote} support;
2486 @code{mathenv} for various alignment in maths; list handling; @code{mdwmath}
2487 which adds some minor changes to LaTeX maths; a rewrite of LaTeX's tabular and
2488 array environments; verbatim handling; and syntax diagrams.")
2489 (license license:gpl3+)))
2490
2491 (define-public texlive-latex-polyglossia
2492 (package
2493 (name "texlive-latex-polyglossia")
2494 (version (number->string %texlive-revision))
2495 (source (origin
2496 (method svn-fetch)
2497 (uri (texlive-ref "latex" "polyglossia"))
2498 (file-name (string-append name "-" version "-checkout"))
2499 (sha256
2500 (base32
2501 "09mvszd5qgqg4cfglpj5qxyzjz190ppb9p8gnsnjydwp1akvhayf"))))
2502 (build-system texlive-build-system)
2503 (arguments '(#:tex-directory "latex/polyglossia"))
2504 (home-page "https://www.ctan.org/pkg/polyglossia")
2505 (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
2506 (description
2507 "This package provides a complete Babel replacement for users of LuaLaTeX
2508 and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least.")
2509 (license license:lppl1.3+)))
2510
2511 (define-public texlive-latex-supertabular
2512 (package
2513 (name "texlive-latex-supertabular")
2514 (version (number->string %texlive-revision))
2515 (source (origin
2516 (method svn-fetch)
2517 (uri (texlive-ref "latex" "supertabular"))
2518 (file-name (string-append name "-" version "-checkout"))
2519 (sha256
2520 (base32
2521 "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
2522 (build-system texlive-build-system)
2523 (arguments '(#:tex-directory "latex/supertabular"))
2524 (home-page "https://www.ctan.org/pkg/supertabular")
2525 (synopsis "Multi-page tables package")
2526 (description
2527 "This package was a predecessor of @code{longtable}; the newer
2528 package (designed on quite different principles) is easier to use and more
2529 flexible, in many cases, but supertabular retains its usefulness in a few
2530 situations where longtable has problems.")
2531 (license license:lppl1.3+)))
2532
2533 (define-public texlive-tex-texinfo
2534 (package
2535 (name "texlive-tex-texinfo")
2536 (version (number->string %texlive-revision))
2537 (source (origin
2538 (method svn-fetch)
2539 (uri (svn-reference
2540 (url (string-append "svn://www.tug.org/texlive/tags/"
2541 %texlive-tag "/Master/texmf-dist/"
2542 "/tex/texinfo"))
2543 (revision %texlive-revision)))
2544 (file-name (string-append name "-" version "-checkout"))
2545 (sha256
2546 (base32
2547 "09zj2w3lx0y6i2syfjjgizahf86z301dw8p37ln6syfhqhzqdz46"))))
2548 (build-system trivial-build-system)
2549 (arguments
2550 `(#:modules ((guix build utils))
2551 #:builder
2552 (begin
2553 (use-modules (guix build utils))
2554 (let ((target (string-append (assoc-ref %outputs "out")
2555 "/share/texmf-dist/tex/texinfo")))
2556 (mkdir-p target)
2557 (copy-recursively (assoc-ref %build-inputs "source") target)
2558 #t))))
2559 (home-page "https://www.ctan.org/pkg/texinfo")
2560 (synopsis "TeX macros to handle Texinfo files")
2561 (description
2562 "Texinfo is the preferred format for documentation in the GNU project;
2563 the format may be used to produce online or printed output from a single
2564 source. The Texinfo macros may be used to produce printable output using TeX;
2565 other programs in the distribution offer online interactive use (with
2566 hypertext linkages in some cases).")
2567 (license license:gpl3+)))
2568
2569 (define-public texlive-latex-upquote
2570 (package
2571 (name "texlive-latex-upquote")
2572 (version (number->string %texlive-revision))
2573 (source (origin
2574 (method svn-fetch)
2575 (uri (texlive-ref "latex" "upquote"))
2576 (file-name (string-append name "-" version "-checkout"))
2577 (sha256
2578 (base32
2579 "0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp"))))
2580 (build-system texlive-build-system)
2581 (arguments '(#:tex-directory "latex/upquote"))
2582 (home-page "https://www.ctan.org/pkg/upquote")
2583 (synopsis "Show \"realistic\" quotes in verbatim")
2584 (description
2585 "Typewriter-style fonts are best for program listings, but Computer
2586 Modern Typewriter prints @code{`} and @code{'} as bent opening and closing
2587 single quotes. Other fonts, and most programming languages, print @code{`} as
2588 a grave accent and @code{'} upright; @code{'} is used both to open and to
2589 close quoted strings. The package switches the typewriter font to Computer
2590 Modern Typewriter in OT1 encoding, and modifies the behaviour of
2591 @code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
2592 in the expected way. It does this regardless of other fonts or encodings in
2593 use, so long as the package is loaded after the other fonts were. The package
2594 does not affect @code{\\tt}, @code{\\texttt}, etc.")
2595 (license license:lppl1.2+)))
2596
2597 (define-public texlive-latex-anysize
2598 (package
2599 (name "texlive-latex-anysize")
2600 (version (number->string %texlive-revision))
2601 (source (origin
2602 (method svn-fetch)
2603 (uri (svn-reference
2604 (url (string-append "svn://www.tug.org/texlive/tags/"
2605 %texlive-tag "/Master/texmf-dist/"
2606 "/tex/latex/anysize"))
2607 (revision %texlive-revision)))
2608 (file-name (string-append name "-" version "-checkout"))
2609 (sha256
2610 (base32
2611 "19khwqjlvznc955sijhww3c4zbb0053rvzwv9nz738qknq7y18vb"))))
2612 (build-system trivial-build-system)
2613 (arguments
2614 `(#:modules ((guix build utils))
2615 #:builder
2616 (begin
2617 (use-modules (guix build utils))
2618 (let ((target (string-append (assoc-ref %outputs "out")
2619 "/share/texmf-dist/tex/latex/anysize")))
2620 (mkdir-p target)
2621 (copy-recursively (assoc-ref %build-inputs "source") target)
2622 #t))))
2623 (home-page "https://www.ctan.org/pkg/anysize")
2624 (synopsis "Simple package to set up document margins")
2625 (description
2626 "This is a simple package to set up document margins. This package is
2627 considered obsolete; alternatives are the @code{typearea} package from the
2628 @code{koma-script} bundle, or the @code{geometry} package.")
2629 (license license:public-domain)))
2630
2631 (define-public texlive-latex-appendix
2632 (package
2633 (name "texlive-latex-appendix")
2634 (version (number->string %texlive-revision))
2635 (source (origin
2636 (method svn-fetch)
2637 (uri (texlive-ref "latex" "appendix"))
2638 (file-name (string-append name "-" version "-checkout"))
2639 (sha256
2640 (base32
2641 "0rxfpr8vq3brwx5rc7qn91ixlp9zva4zrms8a579fqa1g5yva7vg"))))
2642 (build-system texlive-build-system)
2643 (arguments '(#:tex-directory "latex/appendix"))
2644 (home-page "https://www.ctan.org/pkg/appendix")
2645 (synopsis "Extra control of appendices")
2646 (description
2647 "The appendix package provides various ways of formatting the titles of
2648 appendices. Also (sub)appendices environments are provided that can be used,
2649 for example, for per chapter/section appendices. An @code{appendices}
2650 environment is provided which can be used instead of the @code{\\appendix}
2651 command.")
2652 (license license:lppl)))
2653
2654 (define-public texlive-latex-changebar
2655 (package
2656 (name "texlive-latex-changebar")
2657 (version (number->string %texlive-revision))
2658 (source (origin
2659 (method svn-fetch)
2660 (uri (texlive-ref "latex" "changebar"))
2661 (file-name (string-append name "-" version "-checkout"))
2662 (sha256
2663 (base32
2664 "1ik4m8pzfsn1grlda6fniqqfwmgj7rfxwg63jdw0p0qv002vc7ik"))))
2665 (build-system texlive-build-system)
2666 (arguments '(#:tex-directory "latex/changebar"))
2667 (home-page "https://www.ctan.org/pkg/changebar")
2668 (synopsis "Generate changebars in LaTeX documents")
2669 (description
2670 "Identify areas of text to be marked with changebars with the
2671 @code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The
2672 package uses 'drivers' to place the bars; the available drivers can work with
2673 @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI
2674 drivers, and VTeX and pdfTeX.")
2675 (license license:lppl)))
2676
2677 (define-public texlive-latex-cmap
2678 (package
2679 (name "texlive-latex-cmap")
2680 (version (number->string %texlive-revision))
2681 (source (origin
2682 (method svn-fetch)
2683 (uri (svn-reference
2684 (url (string-append "svn://www.tug.org/texlive/tags/"
2685 %texlive-tag "/Master/texmf-dist/"
2686 "/tex/latex/cmap"))
2687 (revision %texlive-revision)))
2688 (file-name (string-append name "-" version "-checkout"))
2689 (sha256
2690 (base32
2691 "1s1rv6zgw105w2j6ffhnk914qrix87y1ndzri1q72g2kbr91zlbg"))))
2692 (build-system trivial-build-system)
2693 (arguments
2694 `(#:modules ((guix build utils))
2695 #:builder
2696 (begin
2697 (use-modules (guix build utils))
2698 (let ((target (string-append (assoc-ref %outputs "out")
2699 "/share/texmf-dist/tex/latex/cmap")))
2700 (mkdir-p target)
2701 (copy-recursively (assoc-ref %build-inputs "source") target)
2702 #t))))
2703 (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\
2704 Master/texmf-dist/tex/latex/cmap/")
2705 (synopsis "CMap support for PDF files")
2706 (description
2707 "This package embeds CMap tables into PDF files to make search and
2708 copy-and-paste functions work properly.")
2709 (license license:lppl)))
2710
2711 (define-public texlive-latex-colortbl
2712 (package
2713 (name "texlive-latex-colortbl")
2714 (version (number->string %texlive-revision))
2715 (source (origin
2716 (method svn-fetch)
2717 (uri (texlive-ref "latex" "colortbl"))
2718 (file-name (string-append name "-" version "-checkout"))
2719 (sha256
2720 (base32
2721 "190pmq8la2rq07xry8bn8z8yywzxv6fqyqaj7yjfj5rgw6x0mas8"))))
2722 (build-system texlive-build-system)
2723 (arguments '(#:tex-directory "latex/colortbl"))
2724 (home-page "https://www.ctan.org/pkg/colortbl")
2725 (synopsis "Add colour to LaTeX tables")
2726 (description
2727 "This package allows rows, columns, and even individual cells in LaTeX
2728 tables to be coloured.")
2729 (license license:lppl)))
2730
2731 (define-public texlive-latex-fancybox
2732 (package
2733 (name "texlive-latex-fancybox")
2734 (version (number->string %texlive-revision))
2735 (source (origin
2736 (method svn-fetch)
2737 (uri (svn-reference
2738 (url (string-append "svn://www.tug.org/texlive/tags/"
2739 %texlive-tag "/Master/texmf-dist/"
2740 "/tex/latex/fancybox"))
2741 (revision %texlive-revision)))
2742 (file-name (string-append name "-" version "-checkout"))
2743 (sha256
2744 (base32
2745 "0smmnaad2q8qwicay1frri990lv65l0k8cwzsvdsyp3jk8kp042w"))))
2746 (build-system trivial-build-system)
2747 (arguments
2748 `(#:modules ((guix build utils))
2749 #:builder
2750 (begin
2751 (use-modules (guix build utils))
2752 (let ((target (string-append (assoc-ref %outputs "out")
2753 "/share/texmf-dist/tex/latex/fancybox")))
2754 (mkdir-p target)
2755 (copy-recursively (assoc-ref %build-inputs "source") target)
2756 #t))))
2757 (home-page "https://www.ctan.org/pkg/fancybox")
2758 (synopsis "Variants of \\fbox and other games with boxes")
2759 (description
2760 "This package provides variants of @code{\\fbox}: @code{\\shadowbox},
2761 @code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for
2762 using box macros and flexible verbatim macros. You can box mathematics,
2763 floats, center, flushleft, and flushright, lists, and pages.")
2764 (license license:lppl1.2+)))
2765
2766 (define-public texlive-latex-fancyhdr
2767 (package
2768 (name "texlive-latex-fancyhdr")
2769 (version (number->string %texlive-revision))
2770 (source (origin
2771 (method svn-fetch)
2772 (uri (svn-reference
2773 (url (string-append "svn://www.tug.org/texlive/tags/"
2774 %texlive-tag "/Master/texmf-dist/"
2775 "/tex/latex/fancyhdr"))
2776 (revision %texlive-revision)))
2777 (file-name (string-append name "-" version "-checkout"))
2778 (sha256
2779 (base32
2780 "04h430agf8aj7ziwyb46xpk95c605rjk1wzhr63m6ylipihidlgw"))))
2781 (build-system trivial-build-system)
2782 (arguments
2783 `(#:modules ((guix build utils))
2784 #:builder
2785 (begin
2786 (use-modules (guix build utils))
2787 (let ((target (string-append (assoc-ref %outputs "out")
2788 "/share/texmf-dist/tex/latex/fancyhdr")))
2789 (mkdir-p target)
2790 (copy-recursively (assoc-ref %build-inputs "source") target)
2791 #t))))
2792 (home-page "https://www.ctan.org/pkg/fancyhdr")
2793 (synopsis "Extensive control of page headers and footers in LaTeX2e")
2794 (description
2795 "The package provides extensive facilities, both for constructing headers
2796 and footers, and for controlling their use (for example, at times when LaTeX
2797 would automatically change the heading style in use).")
2798 (license license:lppl)))
2799
2800 (define-public texlive-latex-float
2801 (package
2802 (name "texlive-latex-float")
2803 (version (number->string %texlive-revision))
2804 (source (origin
2805 (method svn-fetch)
2806 (uri (texlive-ref "latex" "float"))
2807 (file-name (string-append name "-" version "-checkout"))
2808 (sha256
2809 (base32
2810 "0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
2811 (build-system texlive-build-system)
2812 (arguments '(#:tex-directory "latex/float"))
2813 (home-page "https://www.ctan.org/pkg/float")
2814 (synopsis "Improved interface for floating objects")
2815 (description
2816 "This package improves the interface for defining floating objects such
2817 as figures and tables. It introduces the boxed float, the ruled float and the
2818 plaintop float. You can define your own floats and improve the behaviour of
2819 the old ones. The package also provides the @code{H} float modifier option of
2820 the obsolete @code{here} package. You can select this as automatic default
2821 with @code{\\floatplacement{figure}{H}}.")
2822 (license license:lppl)))
2823
2824 (define-public texlive-latex-footmisc
2825 (package
2826 (name "texlive-latex-footmisc")
2827 (version (number->string %texlive-revision))
2828 (source (origin
2829 (method svn-fetch)
2830 (uri (texlive-ref "latex" "footmisc"))
2831 (file-name (string-append name "-" version "-checkout"))
2832 (sha256
2833 (base32
2834 "03x61wwql8nh6zrqiiiq3rb0x7m3pn48c606zapy19y21fybwdxs"))))
2835 (build-system texlive-build-system)
2836 (arguments '(#:tex-directory "latex/footmisc"))
2837 (home-page "https://www.ctan.org/pkg/footmisc")
2838 (synopsis "Range of footnote options")
2839 (description
2840 "This is a collection of ways to change the typesetting of footnotes.
2841 The package provides means of changing the layout of the footnotes themselves,
2842 a way to number footnotes per page, to make footnotes disappear in a
2843 \"moving\" argument, and to deal with multiple references to footnotes from
2844 the same place. The package also has a range of techniques for labelling
2845 footnotes with symbols rather than numbers.")
2846 (license license:lppl1.3+)))
2847
2848 (define-public texlive-latex-listings
2849 (package
2850 (name "texlive-latex-listings")
2851 (version (number->string %texlive-revision))
2852 (source (origin
2853 (method svn-fetch)
2854 (uri (texlive-ref "latex" "listings"))
2855 (file-name (string-append name "-" version "-checkout"))
2856 (sha256
2857 (base32
2858 "1nsn9wp3wl12b36c0sqrim33lf33cr5wky0h4ncnw8lvqgm7h8wf"))))
2859 (build-system texlive-build-system)
2860 (arguments
2861 '(#:tex-directory "latex/listings"
2862 #:build-targets '("listings.ins")))
2863 (home-page "https://www.ctan.org/pkg/listings")
2864 (synopsis "Typeset source code listings using LaTeX")
2865 (description
2866 "The package enables the user to typeset programs (programming code)
2867 within LaTeX; the source code is read directly by TeX---no front-end processor
2868 is needed. Keywords, comments and strings can be typeset using different
2869 styles. Support for @code{hyperref} is provided.")
2870 (license license:lppl1.3+)))
2871
2872 (define-public texlive-latex-jknapltx
2873 (package
2874 (name "texlive-latex-jknapltx")
2875 (version (number->string %texlive-revision))
2876 (source (origin
2877 (method svn-fetch)
2878 (uri (svn-reference
2879 (url (string-append "svn://www.tug.org/texlive/tags/"
2880 %texlive-tag "/Master/texmf-dist/"
2881 "/tex/latex/jknapltx"))
2882 (revision %texlive-revision)))
2883 (file-name (string-append name "-" version "-checkout"))
2884 (sha256
2885 (base32
2886 "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
2887 (build-system trivial-build-system)
2888 (arguments
2889 `(#:modules ((guix build utils))
2890 #:builder
2891 (begin
2892 (use-modules (guix build utils))
2893 (let ((target (string-append (assoc-ref %outputs "out")
2894 "/share/texmf-dist/tex/latex/jknapltx")))
2895 (mkdir-p target)
2896 (copy-recursively (assoc-ref %build-inputs "source") target)
2897 #t))))
2898 (home-page "https://www.ctan.org/pkg/jknappen")
2899 (synopsis "Miscellaneous packages by Joerg Knappen")
2900 (description
2901 "This package provides miscellaneous macros by Joerg Knappen, including:
2902 represent counters in greek; Maxwell's non-commutative division;
2903 @code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
2904 @code{inputenc} definition files that allow verbatim input in the respective
2905 ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
2906 extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
2907 transliterate semitic languages; patches to make (La)TeX formulae embeddable
2908 in SGML; use maths minus in text as appropriate; simple Young tableaux.")
2909 (license license:gpl2)))
2910
2911 (define-public texlive-fonts-ec
2912 (package
2913 (name "texlive-fonts-ec")
2914 (version (number->string %texlive-revision))
2915 (source (origin
2916 (method svn-fetch)
2917 (uri (svn-reference
2918 (url (string-append "svn://www.tug.org/texlive/tags/"
2919 %texlive-tag "/Master/texmf-dist/"
2920 "/fonts/source/jknappen/ec/"))
2921 (revision %texlive-revision)))
2922 (file-name (string-append name "-" version "-checkout"))
2923 (sha256
2924 (base32
2925 "12av65fbz9xiashm09c9m1fj1mijxls5xspd7652ry1n5s0nixy4"))))
2926 (build-system gnu-build-system)
2927 (arguments
2928 `(#:modules ((guix build gnu-build-system)
2929 (guix build utils)
2930 (srfi srfi-1)
2931 (srfi srfi-26))
2932 #:tests? #f ; no tests
2933 #:phases
2934 (modify-phases %standard-phases
2935 (delete 'configure)
2936 (replace 'build
2937 (lambda* (#:key inputs #:allow-other-keys)
2938 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
2939 ;; Tell mf where to find mf.base
2940 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
2941 ;; Tell mf where to look for source files
2942 (setenv "MFINPUTS"
2943 (string-append (getcwd) ":"
2944 mf "/share/texmf-dist/metafont/base:"
2945 (assoc-ref inputs "texlive-fonts-cm")
2946 "/share/texmf-dist/fonts/source/public/cm")))
2947 (mkdir "build")
2948 (for-each (lambda (font)
2949 (format #t "building font ~a\n" font)
2950 (invoke "mf" "-progname=mf"
2951 "-output-directory=build"
2952 (string-append "\\"
2953 "mode:=ljfour; "
2954 "mag:=1; "
2955 "batchmode; "
2956 "input " (basename font ".mf"))))
2957 (find-files "." "[0-9]+\\.mf$"))
2958 #t))
2959 (replace 'install
2960 (lambda* (#:key outputs #:allow-other-keys)
2961 (let* ((out (assoc-ref outputs "out"))
2962 (tfm (string-append
2963 out "/share/texmf-dist/fonts/tfm/jknappen/ec"))
2964 (mf (string-append
2965 out "/share/texmf-dist/fonts/source/jknappen/ec")))
2966 (for-each (cut install-file <> tfm)
2967 (find-files "build" "\\.*"))
2968 (for-each (cut install-file <> mf)
2969 (find-files "." "\\.mf"))
2970 #t))))))
2971 (native-inputs
2972 `(("texlive-bin" ,texlive-bin)
2973 ("texlive-metafont-base" ,texlive-metafont-base)
2974 ("texlive-fonts-cm" ,texlive-fonts-cm)))
2975 (home-page "https://www.ctan.org/pkg/ec")
2976 (synopsis "Computer modern fonts in T1 and TS1 encodings")
2977 (description
2978 "The EC fonts are European Computer Modern Fonts, supporting the complete
2979 LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.
2980 These fonts are intended to be stable with no changes being made to the tfm
2981 files. The set also contains a Text Companion Symbol font, called @code{tc},
2982 featuring many useful characters needed in text typesetting, for example
2983 oldstyle digits, currency symbols (including the newly created Euro symbol),
2984 the permille sign, copyright, trade mark and servicemark as well as a copyleft
2985 sign, and many others. Recent releases of LaTeX2e support the EC fonts. The
2986 EC fonts supersede the preliminary version released as the DC fonts. The
2987 fonts are available in (traced) Adobe Type 1 format, as part of the
2988 @code{cm-super} bundle. The other Computer Modern-style T1-encoded Type 1
2989 set, Latin Modern, is not actually a direct development of the EC set, and
2990 differs from the EC in a number of particulars.")
2991 (license (license:fsf-free "https://www.tug.org/svn/texlive/tags/\
2992 texlive-2017.1/Master/texmf-dist/doc/fonts/ec/copyrite.txt"))))
2993
2994 (define-public texlive-fonts-rsfs
2995 (package
2996 (name "texlive-fonts-rsfs")
2997 (version (number->string %texlive-revision))
2998 (source (origin
2999 (method svn-fetch)
3000 (uri (svn-reference
3001 (url (string-append "svn://www.tug.org/texlive/tags/"
3002 %texlive-tag "/Master/texmf-dist/"
3003 "/fonts/source/public/rsfs/"))
3004 (revision %texlive-revision)))
3005 (file-name (string-append name "-" version "-checkout"))
3006 (sha256
3007 (base32
3008 "0r12pn02r4a955prcvq0048nifh86ihlcgvw3pppqqvfngv34l5h"))))
3009 (build-system gnu-build-system)
3010 (arguments
3011 `(#:modules ((guix build gnu-build-system)
3012 (guix build utils)
3013 (srfi srfi-1)
3014 (srfi srfi-26))
3015 #:tests? #f ; no tests
3016 #:phases
3017 (modify-phases %standard-phases
3018 (delete 'configure)
3019 (replace 'build
3020 (lambda* (#:key inputs #:allow-other-keys)
3021 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
3022 ;; Tell mf where to find mf.base
3023 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
3024 ;; Tell mf where to look for source files
3025 (setenv "MFINPUTS"
3026 (string-append (getcwd) ":"
3027 mf "/share/texmf-dist/metafont/base:"
3028 (assoc-ref inputs "texlive-fonts-cm")
3029 "/share/texmf-dist/fonts/source/public/cm")))
3030 (mkdir "build")
3031 (for-each (lambda (font)
3032 (format #t "building font ~a\n" font)
3033 (invoke "mf" "-progname=mf"
3034 "-output-directory=build"
3035 (string-append "\\"
3036 "mode:=ljfour; "
3037 "mag:=1; "
3038 "batchmode; "
3039 "input " (basename font ".mf"))))
3040 (find-files "." "[0-9]+\\.mf$"))
3041 #t))
3042 (replace 'install
3043 (lambda* (#:key outputs #:allow-other-keys)
3044 (let* ((out (assoc-ref outputs "out"))
3045 (tfm (string-append
3046 out "/share/texmf-dist/fonts/tfm/public/rsfs"))
3047 (mf (string-append
3048 out "/share/texmf-dist/fonts/source/public/rsfs")))
3049 (for-each (cut install-file <> tfm)
3050 (find-files "build" "\\.*"))
3051 (for-each (cut install-file <> mf)
3052 (find-files "." "\\.mf"))
3053 #t))))))
3054 (native-inputs
3055 `(("texlive-bin" ,texlive-bin)
3056 ("texlive-metafont-base" ,texlive-metafont-base)
3057 ("texlive-fonts-cm" ,texlive-fonts-cm)))
3058 (home-page "https://www.ctan.org/pkg/rsfs")
3059 (synopsis "Ralph Smith's Formal Script font")
3060 (description
3061 "The fonts provide uppercase formal script letters for use as symbols in
3062 scientific and mathematical typesetting (in contrast to the informal script
3063 fonts such as that used for the calligraphic symbols in the TeX maths symbol
3064 font). The fonts are provided as Metafont source, and as derived Adobe Type 1
3065 format. LaTeX support, for using these fonts in mathematics, is available via
3066 one of the packages @code{calrsfs} and @code{mathrsfs}.")
3067 (license (license:fsf-free "http://mirrors.ctan.org/fonts/rsfs/README"))))
3068
3069 (define-public texlive-latex-eso-pic
3070 (package
3071 (name "texlive-latex-eso-pic")
3072 (version (number->string %texlive-revision))
3073 (source (origin
3074 (method svn-fetch)
3075 (uri (texlive-ref "latex" "eso-pic"))
3076 (file-name (string-append name "-" version "-checkout"))
3077 (sha256
3078 (base32
3079 "1xvmms28mvvfpks9x7lfya2xhh5k8jy3qnlih1mzcnf156xnb89z"))))
3080 (build-system texlive-build-system)
3081 (arguments '(#:tex-directory "latex/eso-pic"))
3082 (home-page "https://www.ctan.org/pkg/eso-pic")
3083 (synopsis "Add picture commands (or backgrounds) to every page")
3084 (description
3085 "The package adds one or more user commands to LaTeX's @code{shipout}
3086 routine, which may be used to place the output at fixed positions. The
3087 @code{grid} option may be used to find the correct places.")
3088 (license license:lppl1.3+)))
3089
3090 (define-public texlive-latex-eepic
3091 (package
3092 (name "texlive-latex-eepic")
3093 (version (number->string %texlive-revision))
3094 (source (origin
3095 (method svn-fetch)
3096 (uri (svn-reference
3097 (url (string-append "svn://www.tug.org/texlive/tags/"
3098 %texlive-tag "/Master/texmf-dist/"
3099 "/tex/latex/eepic"))
3100 (revision %texlive-revision)))
3101 (file-name (string-append name "-" version "-checkout"))
3102 (sha256
3103 (base32
3104 "1c68gvh021pvybg07apsd2xhq2ljbg80kq94wh71drdga3c2zqjw"))))
3105 (build-system trivial-build-system)
3106 (arguments
3107 `(#:modules ((guix build utils))
3108 #:builder
3109 (begin
3110 (use-modules (guix build utils))
3111 (let ((target (string-append (assoc-ref %outputs "out")
3112 "/share/texmf-dist/tex/latex/eepic")))
3113 (mkdir-p target)
3114 (copy-recursively (assoc-ref %build-inputs "source") target)
3115 #t))))
3116 (home-page "https://www.ctan.org/pkg/eepic")
3117 (synopsis "Extensions to epic and the LaTeX drawing tools")
3118 (description
3119 "Extensions to @code{epic} and the LaTeX picture drawing environment,
3120 include the drawing of lines at any slope, the drawing of circles in any
3121 radii, and the drawing of dotted and dashed lines much faster with much less
3122 TeX memory, and providing several new commands for drawing ellipses, arcs,
3123 splines, and filled circles and ellipses. The package uses @code{tpic}
3124 @code{\\special} commands.")
3125 (license license:public-domain)))
3126
3127 (define-public texlive-latex-enumitem
3128 (package
3129 (name "texlive-latex-enumitem")
3130 (version (number->string %texlive-revision))
3131 (source (origin
3132 (method svn-fetch)
3133 (uri (svn-reference
3134 (url (string-append "svn://www.tug.org/texlive/tags/"
3135 %texlive-tag "/Master/texmf-dist/"
3136 "/tex/latex/enumitem"))
3137 (revision %texlive-revision)))
3138 (file-name (string-append name "-" version "-checkout"))
3139 (sha256
3140 (base32
3141 "0q24b1bkdi9l6bw787bpggww83jh2vj8955aw2m5yccqbx4vgr5r"))))
3142 (build-system trivial-build-system)
3143 (arguments
3144 `(#:modules ((guix build utils))
3145 #:builder
3146 (begin
3147 (use-modules (guix build utils))
3148 (let ((target (string-append (assoc-ref %outputs "out")
3149 "/share/texmf-dist/tex/latex/enumitem")))
3150 (mkdir-p target)
3151 (copy-recursively (assoc-ref %build-inputs "source") target)
3152 #t))))
3153 (home-page "https://www.ctan.org/pkg/enumitem")
3154 (synopsis "Customize basic list environments")
3155 (description
3156 "This package is intended to ease customizing the three basic list
3157 environments: @code{enumerate}, @code{itemize} and @code{description}. It
3158 extends their syntax to allow an optional argument where a set of parameters
3159 in the form @code{key=value} are available, for example:
3160 @code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
3161 (license license:lppl1.3+)))
3162
3163 (define-public texlive-latex-multirow
3164 (package
3165 (name "texlive-latex-multirow")
3166 (version (number->string %texlive-revision))
3167 (source (origin
3168 (method svn-fetch)
3169 (uri (texlive-ref "latex" "multirow"))
3170 (file-name (string-append name "-" version "-checkout"))
3171 (sha256
3172 (base32
3173 "0qlxy47f1f8plgch3jqfsnrdgpyz20sz46yp33i2jwvf9hvfczf0"))))
3174 (build-system texlive-build-system)
3175 (arguments '(#:tex-directory "latex/multirow"))
3176 (home-page "https://www.ctan.org/pkg/multirow")
3177 (synopsis "Create tabular cells spanning multiple rows")
3178 (description
3179 "The package provides tools for creating tabular cells spanning multiple
3180 rows. It has a lot of flexibility, including an option for specifying an
3181 entry at the \"natural\" width of its text.")
3182 (license license:lppl1.3+)))
3183
3184 (define-public texlive-latex-overpic
3185 (package
3186 (name "texlive-latex-overpic")
3187 (version (number->string %texlive-revision))
3188 (source (origin
3189 (method svn-fetch)
3190 (uri (svn-reference
3191 (url (string-append "svn://www.tug.org/texlive/tags/"
3192 %texlive-tag "/Master/texmf-dist/"
3193 "/tex/latex/overpic"))
3194 (revision %texlive-revision)))
3195 (file-name (string-append name "-" version "-checkout"))
3196 (sha256
3197 (base32
3198 "0m29q9qdb00558b7g2i7iw6w62n5s46yx81j8m99qkv77magk4fm"))))
3199 (build-system trivial-build-system)
3200 (arguments
3201 `(#:modules ((guix build utils))
3202 #:builder
3203 (begin
3204 (use-modules (guix build utils))
3205 (let ((target (string-append (assoc-ref %outputs "out")
3206 "/share/texmf-dist/tex/latex/overpic")))
3207 (mkdir-p target)
3208 (copy-recursively (assoc-ref %build-inputs "source") target)
3209 #t))))
3210 (home-page "https://www.ctan.org/pkg/overpic")
3211 (synopsis "Combine LaTeX commands over included graphics")
3212 (description
3213 "The @code{overpic} environment is a cross between the LaTeX
3214 @code{picture} environment and the @code{\\includegraphics} command of
3215 @code{graphicx}. The resulting picture environment has the same dimensions as
3216 the included graphic. LaTeX commands can be placed on the graphic at defined
3217 positions; a grid for orientation is available.")
3218 (license license:lppl1.0+)))
3219
3220 (define-public texlive-latex-parskip
3221 (package
3222 (name "texlive-latex-parskip")
3223 (version (number->string %texlive-revision))
3224 (source (origin
3225 (method svn-fetch)
3226 (uri (svn-reference
3227 (url (string-append "svn://www.tug.org/texlive/tags/"
3228 %texlive-tag "/Master/texmf-dist/"
3229 "/tex/latex/parskip"))
3230 (revision %texlive-revision)))
3231 (file-name (string-append name "-" version "-checkout"))
3232 (sha256
3233 (base32
3234 "14r6h9hqb0qgccxj5l1208694fx8sb8avmgzps36lsbbpszl7i7m"))))
3235 (build-system trivial-build-system)
3236 (arguments
3237 `(#:modules ((guix build utils))
3238 #:builder
3239 (begin
3240 (use-modules (guix build utils))
3241 (let ((target (string-append (assoc-ref %outputs "out")
3242 "/share/texmf-dist/tex/latex/parskip")))
3243 (mkdir-p target)
3244 (copy-recursively (assoc-ref %build-inputs "source") target)
3245 #t))))
3246 (home-page "https://www.ctan.org/pkg/parskip")
3247 (synopsis "Layout with zero \\parindent, non-zero \\parskip")
3248 (description
3249 "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
3250 that is untidy; this package (though it is no substitute for a properly
3251 designed class) helps alleviate this untidiness.")
3252 (license license:lppl)))
3253
3254 (define-public texlive-latex-pdfpages
3255 (package
3256 (name "texlive-latex-pdfpages")
3257 (version (number->string %texlive-revision))
3258 (source (origin
3259 (method svn-fetch)
3260 (uri (texlive-ref "latex" "pdfpages"))
3261 (file-name (string-append name "-" version "-checkout"))
3262 (sha256
3263 (base32
3264 "06p5smfq66559ppdnmkl3hp8534x84ywbscimsiir4gllpya3i9h"))))
3265 (build-system texlive-build-system)
3266 (arguments '(#:tex-directory "latex/pdfpages"))
3267 (home-page "https://www.ctan.org/pkg/pdfpages")
3268 (synopsis "Include PDF documents in LaTeX")
3269 (description
3270 "This package simplifies the inclusion of external multi-page PDF
3271 documents in LaTeX documents. Pages may be freely selected and it is possible
3272 to put several logical pages onto each sheet of paper. Furthermore a lot of
3273 hypertext features like hyperlinks and article threads are provided. The
3274 package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to
3275 use this package to insert PostScript files, in addition to PDF files.")
3276 (license license:lppl1.3+)))
3277
3278 (define-public texlive-fonts-stmaryrd
3279 (package
3280 (name "texlive-fonts-stmaryrd")
3281 (version (number->string %texlive-revision))
3282 (source (origin
3283 (method svn-fetch)
3284 (uri (texlive-ref "fonts" "stmaryrd"))
3285 (file-name (string-append name "-" version "-checkout"))
3286 (sha256
3287 (base32
3288 "08pn4ca3vl6qm9l3wm5h5iyjsrg411kkm1yana329xwg2j14s9n6"))))
3289 (build-system texlive-build-system)
3290 (arguments
3291 '(#:tex-directory "latex/stmaryrd"
3292 #:phases
3293 (modify-phases %standard-phases
3294 (add-after 'configure 'patch-ins
3295 (lambda _
3296 (substitute* "stmaryrd.ins"
3297 (("^%% LaTeX2e.*") "\\input docstrip\n")
3298 (("fontdef\\}\\}" line)
3299 (string-append line "\n\\endbatchfile")))
3300 #t)))))
3301 (home-page "https://www.ctan.org/pkg/stmaryrd")
3302 (synopsis "St Mary Road symbols for theoretical computer science")
3303 (description
3304 "The fonts were originally distributed as Metafont sources only, but
3305 Adobe Type 1 versions are also now available. Macro support is provided for
3306 use under LaTeX; the package supports the @code{only} option (provided by the
3307 @code{somedefs} package) to restrict what is loaded, for those who don't need
3308 the whole font.")
3309 (license license:lppl)))
3310
3311 (define-public texlive-latex-subfigure
3312 (package
3313 (name "texlive-latex-subfigure")
3314 (version (number->string %texlive-revision))
3315 (source (origin
3316 (method svn-fetch)
3317 (uri (texlive-ref "latex" "subfigure"))
3318 (file-name (string-append name "-" version "-checkout"))
3319 (sha256
3320 (base32
3321 "15spcl5wb7w269qd6y596vp4yi8sa5ppcx8w4z2i9kyp02r3a0yb"))))
3322 (build-system texlive-build-system)
3323 (arguments '(#:tex-directory "latex/subfigure"))
3324 (home-page "https://www.ctan.org/pkg/subfigure")
3325 (synopsis "Figures divided into subfigures")
3326 (description
3327 "This (deprecated) package provides support for the manipulation and
3328 reference of small or \"sub\" figures and tables within a single figure or
3329 table environment. It is convenient to use this package when your subfigures
3330 are to be separately captioned, referenced, or are to be included in the
3331 List-of-Figures. A new @code{\\subfigure} command is introduced which can be
3332 used inside a figure environment for each subfigure. An optional first
3333 argument is used as the caption for that subfigure. The package is now
3334 considered obsolete: it was superseded by @code{subfig}, but users may find
3335 the more recent @code{subcaption} package more satisfactory.")
3336 (license license:lppl)))
3337
3338 (define-public texlive-latex-tabulary
3339 (package
3340 (name "texlive-latex-tabulary")
3341 (version (number->string %texlive-revision))
3342 (source (origin
3343 (method svn-fetch)
3344 (uri (texlive-ref "latex" "tabulary"))
3345 (file-name (string-append name "-" version "-checkout"))
3346 (sha256
3347 (base32
3348 "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
3349 (build-system texlive-build-system)
3350 (arguments '(#:tex-directory "latex/tabulary"))
3351 (home-page "https://www.ctan.org/pkg/tabulary")
3352 (synopsis "Tabular with variable width columns balanced")
3353 (description
3354 "The package defines a @code{tabular*}-like environment, @code{tabulary},
3355 taking a \"total width\" argument as well as the column specifications. The
3356 environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for
3357 variable width columns (@code{\\raggedright}, @code{\\centering},
3358 @code{\\raggedleft}, and normally justified). In contrast to
3359 @code{tabularx}'s @code{X} columns, the width of each column is weighted
3360 according to the natural width of the widest cell in the column.")
3361 (license license:lppl)))
3362
3363 (define-public texlive-latex-threeparttable
3364 (package
3365 (name "texlive-latex-threeparttable")
3366 (version (number->string %texlive-revision))
3367 (source (origin
3368 (method svn-fetch)
3369 (uri (svn-reference
3370 (url (string-append "svn://www.tug.org/texlive/tags/"
3371 %texlive-tag "/Master/texmf-dist/"
3372 "/tex/latex/threeparttable"))
3373 (revision %texlive-revision)))
3374 (file-name (string-append name "-" version "-checkout"))
3375 (sha256
3376 (base32
3377 "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
3378 (build-system trivial-build-system)
3379 (arguments
3380 `(#:modules ((guix build utils))
3381 #:builder
3382 (begin
3383 (use-modules (guix build utils))
3384 (let ((target (string-append (assoc-ref %outputs "out")
3385 "/share/texmf-dist/tex/latex/threeparttable")))
3386 (mkdir-p target)
3387 (copy-recursively (assoc-ref %build-inputs "source") target)
3388 #t))))
3389 (home-page "https://www.ctan.org/pkg/threeparttable")
3390 (synopsis "Tables with captions and notes all the same width")
3391 (description
3392 "This package facilitates tables with titles (captions) and notes. The
3393 title and notes are given a width equal to the body of the table (a
3394 @code{tabular} environment). By itself, a @code{threeparttable} does not
3395 float, but you can put it in a @code{table} or a @code{table*} or some other
3396 environment.")
3397 (license (license:fsf-free "file://threeparttable.sty"))))
3398
3399 (define-public texlive-fonts-txfonts
3400 (package
3401 (name "texlive-fonts-txfonts")
3402 (version (number->string %texlive-revision))
3403 (source (origin
3404 (method svn-fetch)
3405 (uri (svn-reference
3406 (url (string-append "svn://www.tug.org/texlive/tags/"
3407 %texlive-tag "/Master/texmf-dist/"
3408 "/tex/latex/txfonts"))
3409 (revision %texlive-revision)))
3410 (file-name (string-append name "-" version "-checkout"))
3411 (sha256
3412 (base32
3413 "0jl921qdphg8i7bkfprackn3xd4gmvxckc526nmzqsmahqkavgg2"))))
3414 (build-system trivial-build-system)
3415 (arguments
3416 `(#:modules ((guix build utils)
3417 (ice-9 match))
3418 #:builder
3419 (begin
3420 (use-modules (guix build utils)
3421 (ice-9 match))
3422 (let ((root (string-append (assoc-ref %outputs "out")
3423 "/share/texmf-dist/"))
3424 (pkgs '(("source" . "tex/latex/txfonts")
3425 ("txfonts-vf" . "fonts/tfm/public/txfonts")
3426 ("txfonts-afm" . "fonts/afm/public/txfonts")
3427 ("txfonts-tfm" . "fonts/tfm/public/txfonts")
3428 ("txfonts-type1" . "fonts/type1/public/txfonts")
3429 ("txfonts-enc" . "fonts/enc/dvips/txfonts")
3430 ("txfonts-map" . "fonts/map/dvips/txfonts"))))
3431 (for-each (match-lambda
3432 ((pkg . dir)
3433 (let ((target (string-append root dir)))
3434 (mkdir-p target)
3435 (copy-recursively (assoc-ref %build-inputs pkg)
3436 target))))
3437 pkgs)
3438 #t))))
3439 (native-inputs
3440 `(("txfonts-tfm"
3441 ,(origin
3442 (method svn-fetch)
3443 (uri (svn-reference
3444 (url (string-append "svn://www.tug.org/texlive/tags/"
3445 %texlive-tag "/Master/texmf-dist/"
3446 "/fonts/tfm/public/txfonts"))
3447 (revision %texlive-revision)))
3448 (file-name (string-append name "-tfm-" version "-checkout"))
3449 (sha256
3450 (base32
3451 "12ffmbrp48ap35qa3b4mi6ckif9q2vf7972jxh5dc1yzykhla2xv"))))
3452 ("txfonts-vf"
3453 ,(origin
3454 (method svn-fetch)
3455 (uri (svn-reference
3456 (url (string-append "svn://www.tug.org/texlive/tags/"
3457 %texlive-tag "/Master/texmf-dist/"
3458 "/fonts/vf/public/txfonts"))
3459 (revision %texlive-revision)))
3460 (file-name (string-append name "-vf-" version "-checkout"))
3461 (sha256
3462 (base32
3463 "04acyfdwvxpfx4l2xh2bpzdmpvwdf2pzbs7a236b0xckz2jvc1ci"))))
3464 ("txfonts-afm"
3465 ,(origin
3466 (method svn-fetch)
3467 (uri (svn-reference
3468 (url (string-append "svn://www.tug.org/texlive/tags/"
3469 %texlive-tag "/Master/texmf-dist/"
3470 "/fonts/afm/public/txfonts"))
3471 (revision %texlive-revision)))
3472 (file-name (string-append name "-afm-" version "-checkout"))
3473 (sha256
3474 (base32
3475 "1705klz51pnqzcs89s3521b84b6c89wlczflsh0vci66nl155yis"))))
3476 ("txfonts-type1"
3477 ,(origin
3478 (method svn-fetch)
3479 (uri (svn-reference
3480 (url (string-append "svn://www.tug.org/texlive/tags/"
3481 %texlive-tag "/Master/texmf-dist/"
3482 "/fonts/type1/public/txfonts"))
3483 (revision %texlive-revision)))
3484 (file-name (string-append name "-type1-" version "-checkout"))
3485 (sha256
3486 (base32
3487 "0ajwr7zb6ch3gxd0g8p2i4llhy2wr9a9saz6jq6hm6fxf4pgl5h3"))))
3488 ("txfonts-map"
3489 ,(origin
3490 (method svn-fetch)
3491 (uri (svn-reference
3492 (url (string-append "svn://www.tug.org/texlive/tags/"
3493 %texlive-tag "/Master/texmf-dist/"
3494 "/fonts/map/dvips/txfonts"))
3495 (revision %texlive-revision)))
3496 (file-name (string-append name "-map-" version "-checkout"))
3497 (sha256
3498 (base32
3499 "0kamr8a9x24jakas3v09dgv7kkpybj3i7qv4vz1iyypqr6kk1raj"))))
3500 ("txfonts-enc"
3501 ,(origin
3502 (method svn-fetch)
3503 (uri (svn-reference
3504 (url (string-append "svn://www.tug.org/texlive/tags/"
3505 %texlive-tag "/Master/texmf-dist/"
3506 "/fonts/enc/dvips/txfonts"))
3507 (revision %texlive-revision)))
3508 (file-name (string-append name "-enc-" version "-checkout"))
3509 (sha256
3510 (base32
3511 "1bal5fhw0xlhl37ayv8vlnqnsn1y82kadzfjhbgr223blspp4zsj"))))))
3512 (home-page "https://www.ctan.org/pkg/threeparttable")
3513 (synopsis "Times-like fonts in support of mathematics")
3514 (description
3515 "Txfonts supplies virtual text roman fonts using Adobe Times (or URW
3516 NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,
3517 and TS1 encodings; maths alphabets using Times/URW Nimbus; maths fonts
3518 providing all the symbols of the Computer Modern and AMS fonts, including all
3519 the Greek capital letters from CMR; and additional maths fonts of various
3520 other symbols.
3521
3522 The set is complemented by a sans-serif set of text fonts, based on
3523 Helvetica/NimbusSanL, and a monospace set.
3524
3525 All the fonts are in Type 1 format (AFM and PFB files), and are supported by
3526 TeX metrics (VF and TFM files) and macros for use with LaTeX.")
3527 ;; Any version of the GPL with font exception.
3528 (license license:gpl3+)))
3529
3530 (define-public texlive-fonts-iwona
3531 (package
3532 (name "texlive-fonts-iwona")
3533 (version "0.995b")
3534 (source (origin
3535 (method url-fetch)
3536 (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
3537 (string-map (lambda (c)
3538 (if (char=? c #\.)
3539 #\_ c))
3540 version)
3541 ".zip"))
3542 (sha256
3543 (base32
3544 "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
3545 (build-system trivial-build-system)
3546 (arguments
3547 `(#:modules ((guix build utils))
3548 #:builder
3549 (begin
3550 (use-modules (guix build utils))
3551 (let ((target (string-append (assoc-ref %outputs "out")
3552 "/share/texmf-dist/"))
3553 (unzip (string-append (assoc-ref %build-inputs "unzip")
3554 "/bin/unzip")))
3555 (invoke unzip (assoc-ref %build-inputs "source"))
3556 (mkdir-p target)
3557 (copy-recursively "iwona" target)
3558 #t))))
3559 (native-inputs
3560 `(("unzip" ,unzip)))
3561 (home-page "http://jmn.pl/en/kurier-i-iwona/")
3562 (synopsis "Sans-serif typeface for TeX")
3563 (description "Iwona is a two-element sans-serif typeface. It was created
3564 as an alternative version of the Kurier typeface, which was designed in 1975
3565 for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
3566 supervision of Roman Tomaszewski. Kurier was designed for linotype
3567 typesetting of newspapers and similar periodicals. The Iwona fonts are an
3568 alternative version of the Kurier fonts. The difference lies in the absence
3569 of ink traps which typify the Kurier font.")
3570 (license license:gfl1.0)))
3571
3572 (define-public texlive-latex-titlesec
3573 (package
3574 (name "texlive-latex-titlesec")
3575 (version (number->string %texlive-revision))
3576 (source (origin
3577 (method svn-fetch)
3578 (uri (svn-reference
3579 (url (string-append "svn://www.tug.org/texlive/tags/"
3580 %texlive-tag "/Master/texmf-dist/"
3581 "/tex/latex/titlesec"))
3582 (revision %texlive-revision)))
3583 (file-name (string-append name "-" version "-checkout"))
3584 (sha256
3585 (base32
3586 "04nmkhqx6jxcxx9a30zbcd5smxi5fd0cbp132bki7fnvhspnhg21"))))
3587 (build-system trivial-build-system)
3588 (arguments
3589 `(#:modules ((guix build utils))
3590 #:builder
3591 (begin
3592 (use-modules (guix build utils))
3593 (let ((target (string-append (assoc-ref %outputs "out")
3594 "/share/texmf-dist/tex/latex/titlesec")))
3595 (mkdir-p target)
3596 (copy-recursively (assoc-ref %build-inputs "source") target)
3597 #t))))
3598 (home-page "https://www.ctan.org/pkg/titlesec")
3599 (synopsis "Select alternative section titles")
3600 (description
3601 "This package provides an interface to sectioning commands for selection
3602 from various title styles, e.g. for marginal titles and to change the font of
3603 all headings with a single command, also providing simple one-step page
3604 styles. It also includes a package to change the page styles when there are
3605 floats in a page. You may assign headers/footers to individual floats, too.")
3606 (license license:lppl)))
3607
3608 (define-public texlive-latex-type1cm
3609 (package
3610 (name "texlive-latex-type1cm")
3611 (version (number->string %texlive-revision))
3612 (source (origin
3613 (method svn-fetch)
3614 (uri (texlive-ref "latex" "type1cm"))
3615 (file-name (string-append name "-" version "-checkout"))
3616 (sha256
3617 (base32
3618 "1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
3619 (build-system texlive-build-system)
3620 (arguments '(#:tex-directory "latex/type1cm"))
3621 (home-page "https://www.ctan.org/pkg/type1cm")
3622 (synopsis "Arbitrary size font selection in LaTeX")
3623 (description
3624 "LaTeX, by default, restricts the sizes at which you can use its default
3625 computer modern fonts, to a fixed set of discrete sizes (effectively, a set
3626 specified by Knuth). The @code{type1cm} package removes this restriction;
3627 this is particularly useful when using scalable versions of the CM
3628 fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
3629 PCTeX, etc.). In fact, since modern distributions will automatically generate
3630 any bitmap font you might need, @code{type1cm} has wider application than just
3631 those using scalable versions of the fonts. Note that the LaTeX distribution
3632 now contains a package @code{fix-cm},f which performs the task of
3633 @code{type1cm}, as well as doing the same job for T1- and TS1-encoded
3634 @code{ec} fonts.")
3635 (license license:lppl)))
3636
3637 (define-public texlive-latex-lh
3638 (package
3639 (name "texlive-latex-lh")
3640 (version (number->string %texlive-revision))
3641 (source (origin
3642 (method svn-fetch)
3643 (uri (texlive-ref "latex" "lh"))
3644 (file-name (string-append name "-" version "-checkout"))
3645 (sha256
3646 (base32
3647 "00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
3648 (build-system texlive-build-system)
3649 (arguments '(#:tex-directory "latex/lh"))
3650 (home-page "https://www.ctan.org/pkg/lh")
3651 (synopsis "Cyrillic fonts that support LaTeX standard encodings")
3652 (description
3653 "The LH fonts address the problem of the wide variety of alphabets that
3654 are written with Cyrillic-style characters. The fonts are the original basis
3655 of the set of T2* and X2 encodings that are now used when LaTeX users need to
3656 write in Cyrillic languages. Macro support in standard LaTeX encodings is
3657 offered through the latex-cyrillic and t2 bundles, and the package itself
3658 offers support for other (more traditional) encodings. The fonts, in the
3659 standard T2* and X2 encodings are available in Adobe Type 1 format, in the
3660 CM-Super family of fonts. The package also offers its own LaTeX support for
3661 OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
3662 (license license:lppl)))
3663
3664 (define-public texlive-metapost
3665 (package
3666 (name "texlive-metapost")
3667 (version (number->string %texlive-revision))
3668 (source (origin
3669 (method svn-fetch)
3670 (uri (svn-reference
3671 (url (string-append "svn://www.tug.org/texlive/tags/"
3672 %texlive-tag "/Master/texmf-dist/"
3673 "/metapost"))
3674 (revision %texlive-revision)))
3675 (file-name (string-append name "-" version "-checkout"))
3676 (sha256
3677 (base32
3678 "03nvjddffiz796wll6axzmgfvynyciy2mqamv20qx252w71vwkwd"))))
3679 (build-system trivial-build-system)
3680 (arguments
3681 `(#:modules ((guix build utils))
3682 #:builder
3683 (begin
3684 (use-modules (guix build utils))
3685 (let ((target (string-append (assoc-ref %outputs "out")
3686 "/share/texmf-dist/metapost")))
3687 (mkdir-p target)
3688 (copy-recursively (assoc-ref %build-inputs "source") target)
3689 #t))))
3690 (home-page "https://www.ctan.org/pkg/metapost")
3691 (synopsis "Create scalable illustrations")
3692 (description
3693 "MetaPost uses a language based on that of Metafont to produce precise
3694 technical illustrations. Its output is scalable PostScript or SVG, rather
3695 than the bitmaps Metafont creates.")
3696 (license license:lppl)))
3697
3698 (define-public texlive-latex-acmart
3699 (package
3700 (name "texlive-latex-acmart")
3701 (version "1.45")
3702 (source (origin
3703 (method svn-fetch)
3704 (uri (texlive-ref "latex" "acmart"))
3705 (sha256
3706 (base32
3707 "10zs8ga88ksypv1v4p6mynmfa7749q2hgxlr4shnwfjd9wrb421q"))
3708 (file-name (string-append name "-" version "-checkout"))))
3709 (build-system texlive-build-system)
3710 (arguments '(#:tex-directory "latex/acmart"))
3711 (home-page "https://www.ctan.org/pkg/acmart")
3712 (synopsis "Class for typesetting publications of ACM")
3713 (description
3714 "This package provides a class for typesetting publications of the
3715 Association for Computing Machinery (ACM).")
3716 (license license:lppl1.3+)))
3717
3718 (define-public texlive-latex-varwidth
3719 (package
3720 (name "texlive-latex-varwidth")
3721 (version (number->string %texlive-revision))
3722 (source (origin
3723 (method svn-fetch)
3724 (uri (svn-reference
3725 (url (string-append "svn://www.tug.org/texlive/tags/"
3726 %texlive-tag "/Master/texmf-dist/"
3727 "/tex/latex/varwidth"))
3728 (revision %texlive-revision)))
3729 (file-name (string-append name "-" version "-checkout"))
3730 (sha256
3731 (base32
3732 "1bmz9ap0ffyg7qry2xi7lki06qx4809w028xvk88cl66h7p46g52"))))
3733 (build-system trivial-build-system)
3734 (arguments
3735 `(#:modules ((guix build utils))
3736 #:builder
3737 (begin
3738 (use-modules (guix build utils))
3739 (let ((target (string-append (assoc-ref %outputs "out")
3740 "/share/texmf-dist/tex/latex/varwidth")))
3741 (mkdir-p target)
3742 (copy-recursively (assoc-ref %build-inputs "source") target)
3743 #t))))
3744 (home-page "https://www.ctan.org/pkg/varwidth")
3745 (synopsis "Variable-width minipage")
3746 (description
3747 "The @code{varwidth} environment is superficially similar to
3748 @code{minipage}, but the specified width is just a maximum value — the box may
3749 get a narrower “natural” width.")
3750 (license license:lppl)))
3751
3752 (define-public texlive-latex-wasysym
3753 (package
3754 (name "texlive-latex-wasysym")
3755 (version (number->string %texlive-revision))
3756 (source (origin
3757 (method svn-fetch)
3758 (uri (texlive-ref "latex" "wasysym"))
3759 (file-name (string-append name "-" version "-checkout"))
3760 (sha256
3761 (base32
3762 "1sgwbfwjjf70g54hh93gsd9jp9nm67w6n74x9d72a56n07jbk5hv"))))
3763 (build-system texlive-build-system)
3764 (arguments '(#:tex-directory "latex/wasysym"))
3765 (home-page "https://www.ctan.org/pkg/wasysym")
3766 (synopsis "LaTeX support file to use the WASY2 fonts")
3767 (description
3768 "The wasy2WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs
3769 like male and female symbols and astronomical symbols, as well as the complete
3770 lasy font set and other odds and ends. The wasysym package implements an easy
3771 to use interface for these symbols.")
3772 (license license:lppl)))
3773
3774 (define-public texlive-latex-wrapfig
3775 (package
3776 (name "texlive-latex-wrapfig")
3777 (version (number->string %texlive-revision))
3778 (source (origin
3779 (method svn-fetch)
3780 (uri (svn-reference
3781 (url (string-append "svn://www.tug.org/texlive/tags/"
3782 %texlive-tag "/Master/texmf-dist/"
3783 "/tex/latex/wrapfig"))
3784 (revision %texlive-revision)))
3785 (file-name (string-append name "-" version "-checkout"))
3786 (sha256
3787 (base32
3788 "16xpyl0csmmwndz1xhzqfg9l0zcsnqxslsixsqkwd4zsvfj30sv4"))))
3789 (build-system trivial-build-system)
3790 (arguments
3791 `(#:modules ((guix build utils))
3792 #:builder
3793 (begin
3794 (use-modules (guix build utils))
3795 (let ((target (string-append (assoc-ref %outputs "out")
3796 "/share/texmf-dist/tex/latex/wrapfig")))
3797 (mkdir-p target)
3798 (copy-recursively (assoc-ref %build-inputs "source") target)
3799 #t))))
3800 (home-page "https://www.ctan.org/pkg/wrapfig")
3801 (synopsis "Produces figures which text can flow around")
3802 (description
3803 "This package allows figures or tables to have text wrapped around them.
3804 It does not work in combination with list environments, but can be used in a
3805 @code{parbox} or @code{minipage}, and in two-column format.")
3806 (license license:lppl)))
3807
3808 (define-public texlive-latex-ucs
3809 (package
3810 (name "texlive-latex-ucs")
3811 (version (number->string %texlive-revision))
3812 (source (origin
3813 (method svn-fetch)
3814 (uri (svn-reference
3815 (url (string-append "svn://www.tug.org/texlive/tags/"
3816 %texlive-tag "/Master/texmf-dist/"
3817 "/tex/latex/ucs"))
3818 (revision %texlive-revision)))
3819 (file-name (string-append name "-" version "-checkout"))
3820 (sha256
3821 (base32
3822 "0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37"))))
3823 (build-system trivial-build-system)
3824 (arguments
3825 `(#:modules ((guix build utils))
3826 #:builder
3827 (begin
3828 (use-modules (guix build utils))
3829 (let ((target (string-append (assoc-ref %outputs "out")
3830 "/share/texmf-dist/tex/latex/ucs")))
3831 (mkdir-p target)
3832 (copy-recursively (assoc-ref %build-inputs "source") target)
3833 #t))))
3834 (home-page "https://www.ctan.org/pkg/ucs")
3835 (synopsis "Extended UTF-8 input encoding support for LaTeX")
3836 (description
3837 "The bundle provides the @code{ucs} package, and @code{utf8x.def},
3838 together with a large number of support files. The @code{utf8x.def}
3839 definition file for use with @code{inputenc} covers a wider range of Unicode
3840 characters than does @code{utf8.def} in the LaTeX distribution. The package
3841 provides facilities for efficient use of its large sets of Unicode characters.
3842 Glyph production may be controlled by various options, which permits use of
3843 non-ASCII characters when coding mathematical formulae. Note that the bundle
3844 previously had an alias “unicode”; that alias has now been withdrawn, and no
3845 package of that name now exists.")
3846 (license license:lppl1.3+)))
3847
3848 (define-public texlive-latex-preview
3849 (package
3850 (name "texlive-latex-preview")
3851 (version (number->string %texlive-revision))
3852 (source (origin
3853 (method svn-fetch)
3854 (uri (texlive-ref "latex" "preview"))
3855 (file-name (string-append name "-" version "-checkout"))
3856 (sha256
3857 (base32
3858 "0j6fff6q0ca96nwfdgay2jm55792z4q9aa0rczmiw2qccyg5n2dv"))))
3859 (build-system texlive-build-system)
3860 (arguments
3861 '(#:tex-directory "latex/preview"
3862 #:phases
3863 (modify-phases %standard-phases
3864 (add-after 'unpack 'remove-generated-file
3865 (lambda _
3866 (delete-file "preview.drv")
3867 #t)))))
3868 (home-page "https://www.ctan.org/pkg/preview")
3869 (synopsis "Extract bits of a LaTeX source for output")
3870 (description
3871 "The main purpose of the preview package is the extraction of selected
3872 elements from a LaTeX source, like formulas or graphics, into separate
3873 pages of a DVI file. A flexible and convenient interface allows it to
3874 specify what commands and constructs should be extracted. This works
3875 with DVI files postprocessed by either Dvips and Ghostscript or
3876 dvipng, but it also works when you are using PDFTeX for generating PDF
3877 files.")
3878 (license license:gpl3+)))
3879
3880 (define-public texlive-latex-acronym
3881 (package
3882 (name "texlive-latex-acronym")
3883 (version (number->string %texlive-revision))
3884 (source (origin
3885 (method svn-fetch)
3886 (uri (texlive-ref "latex" "acronym"))
3887 (file-name (string-append name "-" version "-checkout"))
3888 (sha256
3889 (base32
3890 "0jmasg40bk53zdd2jc8nc18jvdai3p2wmamy7hwli8gls4nf25qp"))))
3891 (build-system texlive-build-system)
3892 (arguments '(#:tex-directory "latex/acronym"))
3893 (home-page "https://www.ctan.org/pkg/acronym")
3894 (synopsis "Expand acronyms at least once")
3895 (description
3896 "This package ensures that all acronyms used in the text are spelled out
3897 in full at least once. It also provides an environment to build a list of
3898 acronyms used. The package is compatible with PDF bookmarks. The package
3899 requires the suffix package, which in turn requires that it runs under
3900 e-TeX.")
3901 (license license:lppl1.3+)))
3902
3903 (define-public texlive-generic-pdftex
3904 (package
3905 (name "texlive-generic-pdftex")
3906 (version (number->string %texlive-revision))
3907 (source (origin
3908 (method svn-fetch)
3909 (uri (svn-reference
3910 (url (string-append "svn://www.tug.org/texlive/tags/"
3911 %texlive-tag "/Master/texmf-dist/"
3912 "/tex/generic/pdftex"))
3913 (revision %texlive-revision)))
3914 (file-name (string-append name "-" version "-checkout"))
3915 (sha256
3916 (base32
3917 "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
3918 (build-system trivial-build-system)
3919 (arguments
3920 `(#:modules ((guix build utils))
3921 #:builder
3922 (begin
3923 (use-modules (guix build utils))
3924 (let ((target (string-append (assoc-ref %outputs "out")
3925 "/share/texmf-dist/tex/generic/pdftex")))
3926 (mkdir-p target)
3927 (copy-recursively (assoc-ref %build-inputs "source") target)
3928 #t))))
3929 (home-page "https://www.ctan.org/pkg/pdftex")
3930 (synopsis "TeX extension for direct creation of PDF")
3931 (description
3932 "This package provides an extension of TeX which can be configured to
3933 directly generate PDF documents instead of DVI.")
3934 (license license:gpl2+)))
3935
3936 (define texlive-texmf
3937 (package
3938 (name "texlive-texmf")
3939 (version "2017")
3940 (source texlive-texmf-src)
3941 (build-system gnu-build-system)
3942 (inputs
3943 `(("texlive-bin" ,texlive-bin)
3944 ("lua" ,lua)
3945 ("perl" ,perl)
3946 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
3947 ("ruby" ,ruby)
3948 ("tcsh" ,tcsh)))
3949 (arguments
3950 `(#:modules ((guix build gnu-build-system)
3951 (guix build utils)
3952 (srfi srfi-26))
3953
3954 ;; This package takes 4 GiB, which we can't afford to distribute from
3955 ;; our servers.
3956 #:substitutable? #f
3957
3958 #:phases
3959 (modify-phases (map (cut assq <> %standard-phases)
3960 '(set-paths unpack patch-source-shebangs))
3961 (add-after 'patch-source-shebangs 'install
3962 (lambda* (#:key outputs #:allow-other-keys)
3963 (let ((share (string-append (assoc-ref outputs "out") "/share")))
3964 (mkdir-p share)
3965 (invoke "mv" "texmf-dist" share))))
3966 (add-after 'install 'texmf-config
3967 (lambda* (#:key inputs outputs #:allow-other-keys)
3968 (let* ((out (assoc-ref outputs "out"))
3969 (share (string-append out "/share"))
3970 (texmfroot (string-append share "/texmf-dist/web2c"))
3971 (texmfcnf (string-append texmfroot "/texmf.cnf"))
3972 (texlive-bin (assoc-ref inputs "texlive-bin"))
3973 (texbin (string-append texlive-bin "/bin"))
3974 (tlpkg (string-append texlive-bin "/share/tlpkg")))
3975 ;; Register SHARE as TEXMFROOT in texmf.cnf.
3976 (substitute* texmfcnf
3977 (("TEXMFROOT = \\$SELFAUTOPARENT")
3978 (string-append "TEXMFROOT = " share))
3979 (("TEXMFLOCAL = \\$SELFAUTOGRANDPARENT/texmf-local")
3980 "TEXMFLOCAL = $SELFAUTODIR/share/texmf-local")
3981 (("!!\\$TEXMFLOCAL") "$TEXMFLOCAL"))
3982 ;; Register paths in texmfcnf.lua, needed for context.
3983 (substitute* (string-append texmfroot "/texmfcnf.lua")
3984 (("selfautodir:") out)
3985 (("selfautoparent:") (string-append share "/")))
3986 ;; Set path to TeXLive Perl modules
3987 (setenv "PERL5LIB"
3988 (string-append (getenv "PERL5LIB") ":" tlpkg))
3989 ;; Configure the texmf-dist tree; inspired from
3990 ;; http://slackbuilds.org/repository/13.37/office/texlive/
3991 (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
3992 (setenv "TEXMFCNF" texmfroot)
3993 (invoke "updmap-sys" "--nohash" "--syncwithtrees")
3994 (invoke "mktexlsr")
3995 (invoke "fmtutil-sys" "--all")))))))
3996 (properties `((max-silent-time . 9600))) ; don't time out while grafting
3997 (synopsis "TeX Live, a package of the TeX typesetting system")
3998 (description
3999 "TeX Live provides a comprehensive TeX document production system.
4000 It includes all the major TeX-related programs, macro packages, and fonts
4001 that are free software, including support for many languages around the
4002 world.
4003
4004 This package contains the complete tree of texmf-dist data.")
4005 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
4006 (home-page "https://www.tug.org/texlive/")))
4007
4008 (define-public texlive
4009 (package
4010 (name "texlive")
4011 (version "2017")
4012 (source #f)
4013 (build-system trivial-build-system)
4014 (inputs `(("bash" ,bash) ; for wrap-program
4015 ("texlive-bin" ,texlive-bin)
4016 ("texlive-texmf" ,texlive-texmf)))
4017 (native-search-paths
4018 (list (search-path-specification
4019 (variable "TEXMFLOCAL")
4020 (files '("share/texmf-local")))))
4021 (arguments
4022 `(#:modules ((guix build utils))
4023 #:builder
4024 ;; Build the union of texlive-bin and texlive-texmf, but take the
4025 ;; conflicting subdirectory share/texmf-dist from texlive-texmf.
4026 (begin
4027 (use-modules (guix build utils))
4028 (let ((out (assoc-ref %outputs "out"))
4029 (bin (assoc-ref %build-inputs "texlive-bin"))
4030 (texmf (assoc-ref %build-inputs "texlive-texmf"))
4031 (bash (assoc-ref %build-inputs "bash")))
4032 (mkdir out)
4033 (with-directory-excursion out
4034 (for-each
4035 (lambda (name)
4036 (symlink (string-append bin "/" name) name))
4037 '("include" "lib"))
4038 (mkdir "bin")
4039 (with-directory-excursion "bin"
4040 (setenv "PATH" (string-append bash "/bin"))
4041 (for-each
4042 (lambda (name)
4043 (symlink name (basename name))
4044 (wrap-program
4045 (basename name)
4046 `("TEXMFCNF" =
4047 (,(string-append texmf "/share/texmf-dist/web2c")))))
4048 (find-files (string-append bin "/bin/") "")))
4049 (mkdir "share")
4050 (with-directory-excursion "share"
4051 (for-each
4052 (lambda (name)
4053 (symlink (string-append bin "/share/" name) name))
4054 '("info" "man" "tlpkg"))
4055 (for-each
4056 (lambda (name)
4057 (symlink (string-append texmf "/share/" name) name))
4058 '("texmf-dist" "texmf-var"))))
4059 #t))))
4060 (synopsis "TeX Live, a package of the TeX typesetting system")
4061 (description
4062 "TeX Live provides a comprehensive TeX document production system.
4063 It includes all the major TeX-related programs, macro packages, and fonts
4064 that are free software, including support for many languages around the
4065 world.
4066
4067 This package contains the complete TeX Live distribution.")
4068 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
4069 (home-page "https://www.tug.org/texlive/")))
4070
4071 (define-public perl-text-bibtex
4072 (package
4073 (name "perl-text-bibtex")
4074 (version "0.85")
4075 (source
4076 (origin
4077 (method url-fetch)
4078 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/Text-BibTeX-"
4079 version ".tar.gz"))
4080 (sha256
4081 (base32
4082 "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h"))))
4083 (build-system perl-build-system)
4084 (arguments
4085 `(#:phases
4086 (modify-phases %standard-phases
4087 (add-after 'unpack 'add-output-directory-to-rpath
4088 (lambda* (#:key outputs #:allow-other-keys)
4089 (substitute* "inc/MyBuilder.pm"
4090 (("-Lbtparse" line)
4091 (string-append "-Wl,-rpath="
4092 (assoc-ref outputs "out") "/lib " line)))
4093 #t))
4094 (add-after 'unpack 'install-libraries-to-/lib
4095 (lambda* (#:key outputs #:allow-other-keys)
4096 (substitute* "Build.PL"
4097 (("lib64") "lib"))
4098 #t)))))
4099 (native-inputs
4100 `(("perl-capture-tiny" ,perl-capture-tiny)
4101 ("perl-config-autoconf" ,perl-config-autoconf)
4102 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
4103 ("perl-module-build" ,perl-module-build)))
4104 (home-page "https://metacpan.org/release/Text-BibTeX")
4105 (synopsis "Interface to read and parse BibTeX files")
4106 (description "@code{Text::BibTeX} is a Perl library for reading, parsing,
4107 and processing BibTeX files. @code{Text::BibTeX} gives you access to the data
4108 at many different levels: you may work with BibTeX entries as simple field to
4109 string mappings, or get at the original form of the data as a list of simple
4110 values (strings, macros, or numbers) pasted together.")
4111 (license license:perl-license)))
4112
4113 (define-public biber
4114 (package
4115 (name "biber")
4116 (version "2.7")
4117 (source (origin
4118 (method url-fetch)
4119 (uri (string-append "https://github.com/plk/biber/archive/v"
4120 version ".tar.gz"))
4121 (file-name (string-append name "-" version ".tar.gz"))
4122 (sha256
4123 (base32
4124 "17wd80jg98qyddhvz4cin8779ycvppaf2va77r1lyvymjz6w9bx0"))))
4125 (build-system perl-build-system)
4126 (arguments
4127 `(#:phases
4128 (modify-phases %standard-phases
4129 (add-after 'install 'wrap-programs
4130 (lambda* (#:key outputs #:allow-other-keys)
4131 (let* ((out (assoc-ref outputs "out"))
4132 (perl5lib (getenv "PERL5LIB")))
4133 (wrap-program (string-append out "/bin/biber")
4134 `("PERL5LIB" ":" prefix
4135 (,(string-append perl5lib ":" out
4136 "/lib/perl5/site_perl")))))
4137 #t)))))
4138 (inputs
4139 `(("perl-autovivification" ,perl-autovivification)
4140 ("perl-class-accessor" ,perl-class-accessor)
4141 ("perl-data-dump" ,perl-data-dump)
4142 ("perl-data-compare" ,perl-data-compare)
4143 ("perl-data-uniqid" ,perl-data-uniqid)
4144 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
4145 ("perl-datetime-calendar-julian" ,perl-datetime-calendar-julian)
4146 ("perl-file-slurp" ,perl-file-slurp)
4147 ("perl-ipc-cmd" ,perl-ipc-cmd)
4148 ("perl-ipc-run3" ,perl-ipc-run3)
4149 ("perl-list-allutils" ,perl-list-allutils)
4150 ("perl-list-moreutils" ,perl-list-moreutils)
4151 ("perl-mozilla-ca" ,perl-mozilla-ca)
4152 ("perl-regexp-common" ,perl-regexp-common)
4153 ("perl-log-log4perl" ,perl-log-log4perl)
4154 ;; We cannot use perl-unicode-collate here, because otherwise the
4155 ;; hardcoded hashes in the tests would differ. See
4156 ;; https://mail-archive.com/debian-bugs-dist@lists.debian.org/msg1469249.html
4157 ;;("perl-unicode-collate" ,perl-unicode-collate)
4158 ("perl-unicode-normalize" ,perl-unicode-normalize)
4159 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
4160 ("perl-encode-eucjpascii" ,perl-encode-eucjpascii)
4161 ("perl-encode-jis2k" ,perl-encode-jis2k)
4162 ("perl-encode-hanextra" ,perl-encode-hanextra)
4163 ("perl-xml-libxml" ,perl-xml-libxml)
4164 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)
4165 ("perl-xml-libxslt" ,perl-xml-libxslt)
4166 ("perl-xml-writer" ,perl-xml-writer)
4167 ("perl-sort-key" ,perl-sort-key)
4168 ("perl-text-csv" ,perl-text-csv)
4169 ("perl-text-csv-xs" ,perl-text-csv-xs)
4170 ("perl-text-roman" ,perl-text-roman)
4171 ("perl-uri" ,perl-uri)
4172 ("perl-text-bibtex" ,perl-text-bibtex)
4173 ("perl-libwww" ,perl-libwww)
4174 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
4175 ("perl-business-isbn" ,perl-business-isbn)
4176 ("perl-business-issn" ,perl-business-issn)
4177 ("perl-business-ismn" ,perl-business-ismn)
4178 ("perl-lingua-translit" ,perl-lingua-translit)))
4179 (native-inputs
4180 `(("perl-config-autoconf" ,perl-config-autoconf)
4181 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
4182 ("perl-module-build" ,perl-module-build)
4183 ;; for tests
4184 ("perl-file-which" ,perl-file-which)
4185 ("perl-test-more" ,perl-test-most) ; FIXME: "more" would be sufficient
4186 ("perl-test-differences" ,perl-test-differences)))
4187 (home-page "http://biblatex-biber.sourceforge.net/")
4188 (synopsis "Backend for the BibLaTeX citation management tool")
4189 (description "Biber is a BibTeX replacement for users of biblatex. Among
4190 other things it comes with full Unicode support.")
4191 (license license:artistic2.0)))
4192
4193 (define-public rubber
4194 (package
4195 (name "rubber")
4196 (version "1.1")
4197 (source (origin
4198 (method url-fetch)
4199 (uri (list (string-append "https://launchpad.net/rubber/trunk/"
4200 version "/+download/rubber-"
4201 version ".tar.gz")
4202 (string-append "http://ebeffara.free.fr/pub/rubber-"
4203 version ".tar.gz")))
4204 (sha256
4205 (base32
4206 "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq"))))
4207 (build-system gnu-build-system)
4208 (arguments '(#:tests? #f)) ; no `check' target
4209 (inputs `(("texinfo" ,texinfo)
4210 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
4211 ("which" ,which)))
4212 (home-page "https://launchpad.net/rubber")
4213 (synopsis "Wrapper for LaTeX and friends")
4214 (description
4215 "Rubber is a program whose purpose is to handle all tasks related to the
4216 compilation of LaTeX documents. This includes compiling the document itself,
4217 of course, enough times so that all references are defined, and running BibTeX
4218 to manage bibliographic references. Automatic execution of dvips to produce
4219 PostScript documents is also included, as well as usage of pdfLaTeX to produce
4220 PDF documents.")
4221 (license license:gpl2+)))
4222
4223 (define-public texmaker
4224 (package
4225 (name "texmaker")
4226 (version "4.5")
4227 (source (origin
4228 (method url-fetch)
4229 (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
4230 version ".tar.bz2"))
4231 (sha256
4232 (base32
4233 "056njk6j8wma23mlp7xa3rgfaxx0q8ynwx8wkmj7iy0b85p9ds9c"))))
4234 (build-system gnu-build-system)
4235 (arguments
4236 `(#:phases
4237 (modify-phases %standard-phases
4238 ;; Qt has its own configuration utility.
4239 (replace 'configure
4240 (lambda* (#:key outputs #:allow-other-keys)
4241 (let ((out (assoc-ref outputs "out")))
4242 (invoke "qmake"
4243 (string-append "PREFIX=" out)
4244 (string-append "DESKTOPDIR=" out
4245 "/share/applications")
4246 (string-append "ICONDIR=" out "/share/pixmaps")
4247 "texmaker.pro")))))))
4248 (inputs
4249 `(("poppler-qt5" ,poppler-qt5)
4250 ("qtbase" ,qtbase)
4251 ("qtscript" ,qtscript)
4252 ("qtwebkit" ,qtwebkit)
4253 ("zlib" ,zlib)))
4254 (native-inputs
4255 `(("pkg-config" ,pkg-config)))
4256 (home-page "http://www.xm1math.net/texmaker/")
4257 (synopsis "LaTeX editor")
4258 (description "Texmaker is a program that integrates many tools needed to
4259 develop documents with LaTeX, in a single application.")
4260 (license license:gpl2+)))
4261
4262
4263 (define-public teximpatient
4264 (package
4265 (name "teximpatient")
4266 (version "2.4")
4267 (source (origin
4268 (method url-fetch)
4269 (uri (string-append "mirror://gnu/" name "/" name "-"
4270 version ".tar.gz"))
4271 (sha256
4272 (base32
4273 "0h56w22d99dh4fgld4ssik8ggnmhmrrbnrn1lnxi1zr0miphn1sd"))))
4274 (build-system gnu-build-system)
4275 (arguments
4276 `(#:phases
4277 (modify-phases %standard-phases
4278 (delete 'check)
4279 ;; Unfortunately some mistakes have been made in packaging.
4280 ;; Work around them here ...
4281 (replace 'unpack
4282 (lambda* (#:key inputs outputs #:allow-other-keys)
4283 (let ((srcdir "teximpatient-2.4"))
4284 (system* "tar" "-xzf" (assoc-ref inputs "source")
4285 (string-append "--one-top-level=" srcdir))
4286 (delete-file (string-append srcdir "/book.pdf"))
4287 (install-file (car
4288 (find-files
4289 (assoc-ref inputs "automake")
4290 "^install-sh$"))
4291 srcdir)
4292 (chdir srcdir)))))))
4293 (native-inputs
4294 `(("texlive" ,texlive)
4295 ("automake" ,automake)))
4296 (home-page "https://www.gnu.org/software/teximpatient/")
4297 (synopsis "Book on TeX, plain TeX and Eplain")
4298 (description "@i{TeX for the Impatient} is a ~350 page book on TeX,
4299 plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,
4300 and Karl Berry.")
4301 (license license:fdl1.3+)))
4302
4303 (define-public lyx
4304 (package
4305 (name "lyx")
4306 (version "2.2.3")
4307 (source (origin
4308 (method url-fetch)
4309 (uri (string-append "http://ftp.lyx.org/pub/lyx/stable/2.2.x/"
4310 name "-" version ".tar.gz"))
4311 (sha256
4312 (base32
4313 "0xvaz0i371nn2ndinc0d3ywj76ivb62649a4sdgwbivisiahd2fj"))
4314 (patches (search-patches "lyx-2.2.3-fix-test.patch"))
4315 (modules '((guix build utils)))
4316 (snippet
4317 '(begin
4318 (delete-file-recursively "3rdparty")
4319 #t))))
4320 (build-system cmake-build-system)
4321 (arguments
4322 `(#:configure-flags `("-DLYX_USE_QT=QT5"
4323 "-DLYX_EXTERNAL_BOOST=1"
4324 "-DLYX_INSTALL=1"
4325 "-DLYX_RELEASE=1"
4326 ,(string-append "-DLYX_INSTALL_PREFIX="
4327 (assoc-ref %outputs "out")
4328 ;; Exact name and level is necessary.
4329 "/lyx2.2"))
4330 #:phases
4331 (modify-phases %standard-phases
4332 (add-after 'unpack 'patch-python
4333 (lambda* (#:key inputs #:allow-other-keys)
4334 (substitute* '("src/support/os.cpp")
4335 (("\"python ")
4336 (string-append "\""
4337 (assoc-ref inputs "python-2")
4338 "/bin/python ")))
4339 #t))
4340 (add-after 'patch-python 'patch-installer
4341 (lambda* (#:key outputs #:allow-other-keys)
4342 (substitute* "CMakeLists.txt"
4343 (("/usr/local/man/man1")
4344 (string-append (assoc-ref outputs "out")
4345 "/share/man/man1")))
4346 #t))
4347 (add-after 'patch-python 'patch-desktop-file
4348 (lambda* (#:key outputs #:allow-other-keys)
4349 (substitute* "lib/lyx.desktop.in"
4350 (("Exec=")
4351 (string-append "Exec="
4352 (assoc-ref outputs "out")
4353 "/")))
4354 #t))
4355 (add-before 'check 'setenv-check
4356 (lambda _
4357 (setenv "LYX_DIR_22x" (string-append (getcwd) "/../lyx-"
4358 ,version "/lib"))
4359 #t))
4360 (add-after 'install 'install-symlinks
4361 (lambda* (#:key outputs #:allow-other-keys)
4362 (let ((out (assoc-ref outputs "out")))
4363 (mkdir-p (string-append out "/bin"))
4364 (symlink "../lyx2.2/bin/lyx2.2"
4365 (string-append out "/bin/lyx2.2"))
4366 #t))))))
4367 (inputs
4368 `(("boost" ,boost)
4369 ("hunspell" ,hunspell) ; Note: Could also use aspell instead.
4370 ("libx11" ,libx11)
4371 ("python-2" ,python-2)
4372 ("qtbase" ,qtbase)
4373 ("qtsvg" ,qtsvg)
4374 ("zlib" ,zlib)))
4375 (propagated-inputs
4376 `(("texlive" ,texlive))) ; article.cls is in texmf-dist.
4377 (native-inputs
4378 `(("python-2" ,python-2)
4379 ("pkg-config" ,pkg-config)
4380 ("bc" ,bc)))
4381 (home-page "https://www.lyx.org/")
4382 (synopsis "Document preparation system with GUI")
4383 (description "LyX is a document preparation system. It excels at letting
4384 you create complex technical and scientific articles with mathematics,
4385 cross-references, bibliographies, indexes, etc. It is very good for working
4386 with documents of any length in which the usual processing abilities are
4387 required: automatic sectioning and pagination, spell checking and so forth.")
4388 (license license:gpl2+)))
4389
4390 (define-public texlive-latex-media9
4391 (package
4392 (name "texlive-latex-media9")
4393 (version (number->string %texlive-revision))
4394 (source (origin
4395 (method svn-fetch)
4396 (uri (svn-reference
4397 (url (string-append "svn://www.tug.org/texlive/tags/"
4398 %texlive-tag "/Master/texmf-dist/"
4399 "/tex/latex/media9"))
4400 (revision %texlive-revision)))
4401 (file-name (string-append name "-" version "-checkout"))
4402 (sha256
4403 (base32
4404 "01ysky8h8s6q12dxfahkzwhbkc9j5wl50xzcczy0cbjx9f6aj9kv"))))
4405 (build-system trivial-build-system)
4406 (arguments
4407 `(#:modules ((guix build utils))
4408 #:builder
4409 (begin
4410 (use-modules (guix build utils))
4411 (let ((target (string-append (assoc-ref %outputs "out")
4412 "/share/texmf-dist/tex/latex/media9")))
4413 (mkdir-p target)
4414 (copy-recursively (assoc-ref %build-inputs "source") target)
4415 #t))))
4416 (home-page "https://www.ctan.org/pkg/media9")
4417 (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
4418 (description
4419 "The package provides an interface to embed interactive Flash (SWF) and 3D
4420 objects (Adobe U3D & PRC), as well as video and sound files or streams in the
4421 popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
4422 compatibility. Playback of multimedia files uses the built-in Flash Player of
4423 Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player
4424 supports the efficient H.264 codec for video compression.
4425
4426 The package is based on the RichMedia Annotation, an Adobe addition to the PDF
4427 specification. It replaces the now obsolete @code{movie15} package.")
4428 (license license:lppl)))