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