gnu: Add texlive-etoolbox.
[jackhill/guix/guix.git] / gnu / packages / tex.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
4 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
6 ;;; Copyright © 2016, 2018, 2019 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, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
10 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
11 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
12 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
13 ;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org>
14 ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
15 ;;;
16 ;;; This file is part of GNU Guix.
17 ;;;
18 ;;; GNU Guix is free software; you can redistribute it and/or modify it
19 ;;; under the terms of the GNU General Public License as published by
20 ;;; the Free Software Foundation; either version 3 of the License, or (at
21 ;;; your option) any later version.
22 ;;;
23 ;;; GNU Guix is distributed in the hope that it will be useful, but
24 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;;; GNU General Public License for more details.
27 ;;;
28 ;;; You should have received a copy of the GNU General Public License
29 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
30
31 (define-module (gnu packages tex)
32 #:use-module ((guix licenses) #:prefix license:)
33 #:use-module (guix packages)
34 #:use-module (guix download)
35 #:use-module (guix build-system cmake)
36 #:use-module (guix build-system gnu)
37 #:use-module (guix build-system perl)
38 #:use-module (guix build-system trivial)
39 #:use-module (guix build-system texlive)
40 #:use-module (guix utils)
41 #:use-module (guix git-download)
42 #:use-module (guix svn-download)
43 #:use-module (gnu packages)
44 #:use-module (gnu packages algebra)
45 #:use-module (gnu packages autotools)
46 #:use-module (gnu packages bash)
47 #:use-module (gnu packages boost)
48 #:use-module (gnu packages compression)
49 #:use-module (gnu packages fontutils)
50 #:use-module (gnu packages gd)
51 #:use-module (gnu packages ghostscript)
52 #:use-module (gnu packages graphviz)
53 #:use-module (gnu packages gtk)
54 #:use-module (gnu packages icu4c)
55 #:use-module (gnu packages image)
56 #:use-module (gnu packages libreoffice)
57 #:use-module (gnu packages lua)
58 #:use-module (gnu packages multiprecision)
59 #:use-module (gnu packages pdf)
60 #:use-module (gnu packages perl)
61 #:use-module (gnu packages perl-check)
62 #:use-module (gnu packages pkg-config)
63 #:use-module (gnu packages python)
64 #:use-module (gnu packages python-xyz)
65 #:use-module (gnu packages qt)
66 #:use-module (gnu packages ruby)
67 #:use-module (gnu packages shells)
68 #:use-module (gnu packages base)
69 #:use-module (gnu packages gawk)
70 #:use-module (gnu packages web)
71 #:use-module (gnu packages xml)
72 #:use-module (gnu packages xorg)
73 #:use-module (gnu packages xdisorg)
74 #:autoload (gnu packages texinfo) (texinfo)
75 #:use-module (ice-9 ftw)
76 #:use-module (ice-9 match)
77 #:use-module ((srfi srfi-1) #:hide (zip)))
78
79 (define* (simple-texlive-package name locations hash
80 #:key trivial?)
81 "Return a template for a simple TeX Live package with the given NAME,
82 downloading from a list of LOCATIONS in the TeX Live repository, and expecting
83 the provided output HASH. If TRIVIAL? is provided, all files will simply be
84 copied to their outputs; otherwise the TEXLIVE-BUILD-SYSTEM is used."
85 (define with-documentation?
86 (and trivial?
87 (any (lambda (location)
88 (string-prefix? "/doc" location))
89 locations)))
90 (package
91 (name name)
92 (version (number->string %texlive-revision))
93 (source (texlive-origin name version
94 locations hash))
95 (outputs (if with-documentation?
96 '("out" "doc")
97 '("out")))
98 (build-system (if trivial?
99 gnu-build-system
100 texlive-build-system))
101 (arguments
102 (let ((copy-files
103 `(lambda* (#:key outputs inputs #:allow-other-keys)
104 (let (,@(if with-documentation?
105 `((doc (string-append (assoc-ref outputs "doc")
106 "/share/texmf-dist/")))
107 '())
108 (out (string-append (assoc-ref outputs "out")
109 "/share/texmf-dist/")))
110 ,@(if with-documentation?
111 '((mkdir-p doc)
112 (copy-recursively
113 (string-append (assoc-ref inputs "source") "/doc")
114 (string-append doc "/doc")))
115 '())
116 (mkdir-p out)
117 (copy-recursively (assoc-ref inputs "source") out)
118 ,@(if with-documentation?
119 '((delete-file-recursively (string-append out "/doc")))
120 '())
121 #t))))
122 (if trivial?
123 `(#:tests? #f
124 #:phases
125 (modify-phases %standard-phases
126 (delete 'configure)
127 (replace 'build (const #t))
128 (replace 'install ,copy-files)))
129 `(#:phases
130 (modify-phases %standard-phases
131 (add-after 'install 'copy-files ,copy-files))))))
132 (home-page #f)
133 (synopsis #f)
134 (description #f)
135 (license #f)))
136
137 (define hyph-utf8-scripts
138 (origin
139 (method svn-fetch)
140 (uri (texlive-ref "generic" "hyph-utf8"))
141 (file-name (string-append "hyph-utf8-scripts-"
142 (number->string %texlive-revision)
143 "-checkout"))
144 (sha256
145 (base32
146 "1ix8h637hwhz4vrdhilf84kzzdza0wi8fp26nh7iws0bq08sl517"))))
147
148 (define (texlive-hyphen-package name code locations hash)
149 (let ((parent (simple-texlive-package
150 name locations hash #:trivial? #t)))
151 (package
152 (inherit parent)
153 (arguments
154 (substitute-keyword-arguments (package-arguments parent)
155 ((#:modules _ '())
156 '((guix build gnu-build-system)
157 (guix build utils)
158 (ice-9 match)))
159 ((#:phases phases)
160 `(modify-phases ,phases
161 (replace 'build
162 (lambda* (#:key inputs outputs #:allow-other-keys)
163 (let* ((out (assoc-ref outputs "out"))
164 (root (string-append out "/share/texmf-dist"))
165 (patterns
166 (string-append root "/tex/generic/hyph-utf8/patterns/txt/"))
167 (loaders
168 (string-append root "/tex/generic/hyph-utf8/loadhyph"))
169 (ptex
170 (string-append root "/tex/generic/hyph-utf8/patterns/ptex"))
171 (filter-expression
172 (match ',code
173 ((? string?)
174 (format #f "\nlanguages.select!{|l| l.code == \"~a\"}\n" ',code))
175 ((a b ...)
176 (format #f "\nlanguages.select!{|l| [~{\"~a\",~}].include? l.code }\n" ',code)))))
177 (mkdir "scripts")
178 (copy-recursively
179 (assoc-ref inputs "hyph-utf8-scripts") "scripts")
180
181 ;; Prepare target directories
182 (mkdir-p patterns)
183 (mkdir-p loaders)
184 (mkdir-p ptex)
185
186 ;; Generate plain patterns
187 (with-directory-excursion "scripts"
188 (substitute* "languages.rb"
189 (("../../../tex/generic/") "../tex/generic/"))
190 (substitute* "generate-plain-patterns.rb"
191 ;; Ruby 2 does not need this.
192 (("require 'unicode'") "")
193 (("Unicode.upcase\\(ch\\)") "ch.upcase")
194 ;; Write directly to the output directory
195 (("\\$path_root=File.*")
196 (string-append "$path_root=\"" out "/share/texmf-dist/\"\n"))
197 ;; Create quote directory when needed
198 (("f = File.open\\(\"#\\{\\$path_quote\\}" m)
199 (string-append "require 'fileutils'; FileUtils.mkdir_p $path_quote;" m))
200 ;; Only generate patterns for this language.
201 (("languages =.*" m)
202 (string-append m filter-expression)))
203 (invoke "ruby" "generate-plain-patterns.rb")
204
205 ;; Build pattern loaders
206 (substitute* "generate-pattern-loaders.rb"
207 (("\\$path_tex_generic=File.*")
208 (string-append "$path_tex_generic=\"" root "/tex/generic\"\n"))
209 ;; Only generate loader for this language.
210 (("languages =.*" m)
211 (string-append m filter-expression)))
212 (invoke "ruby" "generate-pattern-loaders.rb")
213
214 ;; Build ptex patterns
215 (substitute* "generate-ptex-patterns.rb"
216 (("\\$path_root=File.*")
217 (string-append "$path_root=\"" root "\"\n"))
218 ;; Only generate ptex patterns for this language.
219 (("languages =.*" m)
220 (string-append m filter-expression)))
221 (invoke "ruby" "generate-ptex-patterns.rb")))))))))
222 (native-inputs
223 `(("ruby" ,ruby)
224 ("hyph-utf8-scripts" ,hyph-utf8-scripts)))
225 (home-page "https://ctan.org/pkg/hyph-utf8"))))
226
227 (define texlive-extra-src
228 (origin
229 (method url-fetch)
230 (uri "ftp://tug.org/historic/systems/texlive/2018/texlive-20180414-extra.tar.xz")
231 (sha256 (base32
232 "0a83kymxc8zmlxjb0y1gf6mx7qnf0hxffwkivwh5yh138y2rfhsv"))))
233
234 (define texlive-texmf-src
235 (origin
236 (method url-fetch)
237 (uri "ftp://tug.org/historic/systems/texlive/2018/texlive-20180414-texmf.tar.xz")
238 (sha256 (base32
239 "1b8zigzg8raxkhhzphcmynf84rbdbj2ym2qkz24v8n0qx82zmqms"))))
240
241 (define-public texlive-bin
242 (package
243 (name "texlive-bin")
244 (version "20180414")
245 (source
246 (origin
247 (method url-fetch)
248 (uri (string-append "ftp://tug.org/historic/systems/texlive/2018/"
249 "texlive-" version "-source.tar.xz"))
250 (sha256
251 (base32
252 "0khyi6h015r2zfqgg0a44a2j7vmr1cy42knw7jbss237yvakc07y"))
253 (patches
254 (let ((arch-patch
255 (lambda (name revision hash)
256 (origin
257 (method url-fetch)
258 (uri (string-append "https://git.archlinux.org/svntogit/packages.git"
259 "/plain/trunk/" name "?h=packages/texlive-bin"
260 "&id=" revision))
261 (file-name (string-append "texlive-bin-" name))
262 (sha256 (base32 hash)))))
263 (arch-revision "e1975bce0b9d270d7c9773c5beb7e87d61ee8f57"))
264 (append (search-patches "texlive-bin-CVE-2018-17407.patch"
265 "texlive-bin-luatex-poppler-compat.patch")
266 (list
267 (arch-patch "pdftex-poppler0.72.patch" arch-revision
268 "0p46b6xxxg2s3hx67r0wpz16g3qygx65hpc581xs3jz5pvsiq3y7")
269 (arch-patch "xetex-poppler-fixes.patch" arch-revision
270 "1jj1p5zkjljb7id9pjv29cw0cf8mwrgrh4ackgzz9c200vaqpsvx")))))))
271 (build-system gnu-build-system)
272 (inputs
273 `(("texlive-extra-src" ,texlive-extra-src)
274 ("cairo" ,cairo)
275 ("fontconfig" ,fontconfig)
276 ("fontforge" ,fontforge)
277 ("freetype" ,freetype)
278 ("gd" ,gd)
279 ("gmp" ,gmp)
280 ("ghostscript" ,ghostscript)
281 ("graphite2" ,graphite2)
282 ("harfbuzz" ,harfbuzz)
283 ("icu4c" ,icu4c)
284 ("libpaper" ,libpaper)
285 ("libpng" ,libpng)
286 ("libxaw" ,libxaw)
287 ("libxt" ,libxt)
288 ("mpfr" ,mpfr)
289 ("perl" ,perl)
290 ("pixman" ,pixman)
291 ("poppler" ,poppler)
292 ("potrace" ,potrace)
293 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
294 ("ruby" ,ruby)
295 ("tcsh" ,tcsh)
296 ("teckit" ,teckit)
297 ("zlib" ,zlib)
298 ("zziplib" ,zziplib)))
299 (native-inputs
300 `(("pkg-config" ,pkg-config)))
301 (arguments
302 `(#:out-of-source? #t
303 #:configure-flags
304 `("--disable-native-texlive-build"
305 ;; XXX: This is needed because recent Poppler requires C++11 or later.
306 ;; Remove after switch to GCC >= 6.
307 "CXXFLAGS=-std=gnu++11"
308 "--with-system-cairo"
309 "--with-system-freetype2"
310 "--with-system-gd"
311 "--with-system-gmp"
312 "--with-system-graphite2"
313 "--with-system-harfbuzz"
314 "--with-system-icu"
315 "--with-system-libgs"
316 "--with-system-libpaper"
317 "--with-system-libpng"
318 "--with-system-mpfr"
319 "--with-system-pixman"
320 "--with-system-poppler"
321 "--with-system-potrace"
322 "--with-system-teckit"
323 "--with-system-xpdf"
324 "--with-system-zlib"
325 "--with-system-zziplib")
326
327 ;; Disable tests on mips64/aarch64 to cope with a failure of luajiterr.test.
328 ;; XXX FIXME fix luajit properly on mips64 and aarch64.
329 #:tests? ,(let ((s (or (%current-target-system)
330 (%current-system))))
331 (not (or (string-prefix? "aarch64" s)
332 (string-prefix? "mips64" s))))
333 #:phases
334 (modify-phases %standard-phases
335 (add-after 'unpack 'configure-ghostscript-executable
336 ;; ps2eps.pl uses the "gswin32c" ghostscript executable on Windows,
337 ;; and the "gs" ghostscript executable on Unix. It detects Unix by
338 ;; checking for the existence of the /usr/bin directory. Since
339 ;; Guix System does not have /usr/bin, it is also detected as Windows.
340 (lambda* (#:key inputs #:allow-other-keys)
341 (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl"
342 (("gswin32c") "gs"))
343 (substitute* "texk/texlive/linked_scripts/epstopdf/epstopdf.pl"
344 (("\"gs\"")
345 (string-append "\"" (assoc-ref inputs "ghostscript") "/bin/gs\"")))
346 #t))
347 (add-after 'unpack 'use-code-for-new-poppler
348 (lambda _
349 (copy-file "texk/web2c/pdftexdir/pdftoepdf-poppler0.72.0.cc"
350 "texk/web2c/pdftexdir/pdftoepdf.cc")
351 (copy-file "texk/web2c/pdftexdir/pdftosrc-poppler0.72.0.cc"
352 "texk/web2c/pdftexdir/pdftosrc.cc")
353 #t))
354 (add-after 'unpack 'disable-failing-test
355 (lambda _
356 ;; FIXME: This test fails on 32-bit architectures since Glibc 2.28:
357 ;; <https://bugzilla.redhat.com/show_bug.cgi?id=1631847>.
358 (substitute* "texk/web2c/omegafonts/check.test"
359 (("^\\./omfonts -ofm2opl \\$srcdir/tests/check tests/xcheck \\|\\| exit 1")
360 "./omfonts -ofm2opl $srcdir/tests/check tests/xcheck || exit 77"))
361 #t))
362 (add-after 'install 'postint
363 (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
364 (let* ((out (assoc-ref outputs "out"))
365 (share (string-append out "/share"))
366 (texlive-extra (assoc-ref inputs "texlive-extra-src"))
367 (unpack (assoc-ref %standard-phases 'unpack))
368 (patch-source-shebangs
369 (assoc-ref %standard-phases 'patch-source-shebangs)))
370 (substitute* (string-append share "/texmf-dist/web2c/texmf.cnf")
371 ;; Don't truncate lines.
372 (("^error_line = .*$") "error_line = 254\n")
373 (("^half_error_line = .*$") "half_error_line = 238\n")
374 (("^max_print_line = .*$") "max_print_line = 1000\n"))
375 ;; Create symbolic links for the latex variants and their
376 ;; man pages.
377 (with-directory-excursion (string-append out "/bin/")
378 (for-each symlink
379 '("pdftex" "pdftex" "xetex" "luatex")
380 '("latex" "pdflatex" "xelatex" "lualatex")))
381 (with-directory-excursion (string-append share "/man/man1/")
382 (symlink "luatex.1" "lualatex.1"))
383 ;; Unpack texlive-extra and install tlpkg.
384 (mkdir "texlive-extra")
385 (with-directory-excursion "texlive-extra"
386 (apply unpack (list #:source texlive-extra))
387 (apply patch-source-shebangs (list #:source texlive-extra))
388 (invoke "mv" "tlpkg" share))
389 ;; texlua shebangs are not patched by the patch-source-shebangs
390 ;; phase because the texlua executable does not exist at that
391 ;; time.
392 (setenv "PATH" (string-append (getenv "PATH") ":" out "/bin"))
393 (with-directory-excursion out
394 (patch-source-shebangs))))))))
395 (native-search-paths
396 (list (search-path-specification
397 (variable "TEXMF")
398 (files '("share/texmf-dist"))
399 (separator #f))
400 (search-path-specification
401 (variable "TEXMFCNF")
402 (files '("share/texmf-dist/web2c"))
403 (separator #f))))
404 (synopsis "TeX Live, a package of the TeX typesetting system")
405 (description
406 "TeX Live provides a comprehensive TeX document production system.
407 It includes all the major TeX-related programs, macro packages, and fonts
408 that are free software, including support for many languages around the
409 world.
410
411 This package contains the binaries.")
412 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
413 (home-page "https://www.tug.org/texlive/")))
414
415 \f
416 (define texlive-docstrip
417 (package
418 (inherit (simple-texlive-package
419 "texlive-docstrip"
420 (list "/tex/latex/base/docstrip.tex")
421 (base32
422 "17vdy43d9vknldz7wb69hp33r8awmdvn4xszamvgs5ikcl4cp289")
423 #:trivial? #t))
424 (home-page "https://www.ctan.org/texlive")
425 (synopsis "Utility to strip documentation from TeX files.")
426 (description "This package provides the docstrip utility to strip
427 documentation from TeX files. It is part of the LaTeX base.")
428 (license license:lppl1.3+)))
429
430 (define-public texlive-unicode-data
431 (package
432 (inherit (simple-texlive-package
433 "texlive-unicode-data"
434 (list "/tex/generic/unicode-data/"
435 "/doc/generic/unicode-data/")
436 (base32
437 "1j63kz29arfiydb8r1a53q1r4zyk1yjbcq0w9i93zddczgqzgbfb")
438 #:trivial? #t))
439 (home-page "https://www.ctan.org/pkg/unicode-data")
440 (synopsis "Unicode data and loaders for TeX")
441 (description "This bundle provides generic access to Unicode Consortium
442 data for TeX use. It contains a set of text files provided by the Unicode
443 Consortium which are currently all from Unicode 8.0.0, with the exception of
444 @code{MathClass.txt} which is not currently part of the Unicode Character
445 Database. Accompanying these source data are generic TeX loader files
446 allowing this data to be used as part of TeX runs, in particular in building
447 format files. Currently there are two loader files: one for general character
448 set up and one for initializing XeTeX character classes as has been carried
449 out to date by @code{unicode-letters.tex}. ")
450 (license license:lppl1.3c+)))
451
452 (define-public texlive-generic-unicode-data
453 (deprecated-package "texlive-generic-unicode-data" texlive-unicode-data))
454
455 (define-public texlive-hyphen-base
456 (package
457 (inherit (simple-texlive-package
458 "texlive-hyphen-base"
459 (list "/tex/generic/config/language.dat"
460 "/tex/generic/config/language.dat.lua"
461 "/tex/generic/config/language.def"
462 "/tex/generic/config/language.us"
463 "/tex/generic/config/language.us.def"
464 "/tex/generic/config/language.us.lua"
465 "/tex/generic/hyphen/dumyhyph.tex"
466 "/tex/generic/hyphen/hyphen.tex"
467 "/tex/generic/hyphen/hypht1.tex"
468 "/tex/generic/hyphen/zerohyph.tex")
469 (base32
470 "002g5zhzbj3ikgg8zidagdp605ac9f4qmfl148mp0mbpz1svk0ni")
471 #:trivial? #t))
472 (home-page "https://tug.org/texlive/")
473 (synopsis "Core hyphenation support files")
474 (description "This package includes Knuth's original @file{hyphen.tex},
475 @file{zerohyph.tex} to disable hyphenation, @file{language.us} which starts
476 the autogenerated files @file{language.dat} and @file{language.def} (and
477 default versions of those), etc.")
478 (license license:knuth)))
479
480 ;; TODO: This package should not exist. There should not be a single package
481 ;; containing all of /dvips. These really belong to different packages.
482 (define-public texlive-dvips
483 (package
484 (inherit (simple-texlive-package
485 "texlive-dvips"
486 (list "/fonts/map/dvips/"
487 "/fonts/enc/dvips/base/"
488 "/dvips/")
489 (base32
490 "1di07wx8wjczddmagq5z082l2has3inzk5jwkqh4i6wv1qdfqpp6")
491 #:trivial? #t))
492 (home-page "https://www.ctan.org/pkg/dvips")
493 (synopsis "DVI to PostScript drivers")
494 (description "This package provides files needed for converting DVI files
495 to PostScript.")
496 ;; Various free software licenses apply to individual files.
497 (license (list license:lppl1.3c+
498 license:expat
499 license:lgpl3+))))
500
501 (define-public texlive-tex-ini-files
502 (package
503 (inherit (simple-texlive-package
504 "texlive-tex-ini-files"
505 (list "/tex/generic/tex-ini-files/")
506 (base32
507 "0q1g62jg0qiqslm93ycvm30bw8ydmssjdshzsnzl7n2vpd62qfi2")
508 #:trivial? #t))
509 (home-page "https://www.ctan.org/pkg/tex-ini-files")
510 (synopsis "Files for creating TeX formats")
511 (description "This bundle provides a collection of model \".ini\" files
512 for creating TeX formats. These files are commonly used to introduced
513 distribution-dependent variations in formats. They are also used to
514 allow existing format source files to be used with newer engines, for example
515 to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
516 (license license:public-domain)))
517
518 (define-public texlive-generic-tex-ini-files
519 (deprecated-package "texlive-generic-tex-ini-files" texlive-tex-ini-files))
520
521 (define-public texlive-metafont-base
522 (package
523 (name "texlive-metafont-base")
524 (version (number->string %texlive-revision))
525 (source (origin
526 (method svn-fetch)
527 (uri (svn-reference
528 (url (string-append "svn://www.tug.org/texlive/tags/"
529 %texlive-tag "/Master/texmf-dist/"
530 "/metafont"))
531 (revision %texlive-revision)))
532 (file-name (string-append name "-" version "-checkout"))
533 (sha256
534 (base32
535 "1yl4n8cn5xqk2nc22zgzq6ymd7bhm6xx1mz3azip7i3ki4bhb5q5"))))
536 (build-system gnu-build-system)
537 (arguments
538 `(#:tests? #f ; no test target
539 #:phases
540 (modify-phases %standard-phases
541 (delete 'configure)
542 (replace 'build
543 (lambda* (#:key inputs #:allow-other-keys)
544 (let ((cwd (getcwd)))
545 (setenv "MFINPUTS"
546 (string-append cwd "/base:"
547 cwd "/misc:"
548 cwd "/roex:"
549 cwd "/feynmf:"
550 cwd "/mfpic:"
551 cwd "/config")))
552 (mkdir "build")
553 (with-directory-excursion "build"
554 (invoke "inimf" "mf.mf"))))
555 (replace 'install
556 (lambda* (#:key outputs #:allow-other-keys)
557 (let* ((out (assoc-ref outputs "out"))
558 (base (string-append out "/share/texmf-dist/web2c"))
559 (mf (string-append out "/share/texmf-dist/metafont/base")))
560 (mkdir-p base)
561 (mkdir-p mf)
562 (install-file "build/mf.base" base)
563 (copy-recursively "base" mf)
564 #t))))))
565 (native-inputs
566 `(("texlive-bin" ,texlive-bin)))
567 (home-page "https://www.ctan.org/pkg/metafont")
568 (synopsis "Metafont base files")
569 (description "This package provides the Metafont base files needed to
570 build fonts using the Metafont system.")
571 (license license:knuth)))
572
573 (define-public texlive-fontinst
574 (let ((template (simple-texlive-package
575 "texlive-fontinst"
576 (list "/doc/fonts/fontinst/"
577 "/doc/man/man1/fontinst.1"
578 "/doc/man/man1/fontinst.man1.pdf"
579
580 ;; This is used to build parts of
581 ;; /tex/fontinst/{base,misc}/ and
582 ;; /tex/latex/fontinst/fontdoc.sty.
583 "/source/fontinst/base/"
584
585 ;; These are not generated.
586 "/tex/fontinst/base/bbox.sty"
587 "/tex/fontinst/base/multislot.sty"
588 "/tex/fontinst/misc/glyphbox.mtx"
589 "/tex/fontinst/misc/glyphoff.mtx"
590 "/tex/fontinst/misc/glyphon.mtx"
591 "/tex/fontinst/misc/kernoff.mtx"
592 "/tex/fontinst/misc/kernon.mtx"
593
594 "/tex/fontinst/latinetx/"
595 "/tex/fontinst/latinmtx/"
596 "/tex/fontinst/mathmtx/"
597 "/tex/fontinst/smblmtx/"
598
599 "/scripts/texlive/fontinst.sh")
600 (base32
601 "09drlb0krhnizw92xlm5wxzzpgn3shcxd684xlg0zc5p16l47w6h")
602 #:trivial? #t)))
603 (package
604 (inherit template)
605 (arguments
606 (substitute-keyword-arguments (package-arguments template)
607 ((#:modules _ '())
608 '((guix build gnu-build-system)
609 (guix build utils)
610 (ice-9 match)))
611 ((#:phases phases)
612 `(modify-phases ,phases
613 (replace 'build
614 (lambda* (#:key inputs #:allow-other-keys)
615 (setenv "TEXINPUTS"
616 (string-append (getcwd) "//:"
617 (getcwd) "/source/fontinst/base//:"
618 (assoc-ref inputs "texlive-docstrip") "//"))
619 (mkdir "build")
620 (invoke "tex" "-ini" "-interaction=scrollmode"
621 "-output-directory=build"
622 "fontinst.ins")))
623 ;; Since we're using docstrip without LaTeX we can't set \UseTDS
624 ;; or \BaseDirectory, so the generated files are just dumped in
625 ;; the "build" directory.
626 (add-after 'install 'install-generated-files
627 (lambda* (#:key outputs #:allow-other-keys)
628 (let* ((out (assoc-ref outputs "out"))
629 (root (string-append out "/share/texmf-dist")))
630 (for-each (match-lambda
631 ((dir files ...)
632 (for-each (lambda (file)
633 (install-file
634 (string-append "build/" file)
635 (string-append root dir)))
636 files)))
637 '(("/tex/fontinst/base"
638 "fontinst.sty"
639 "cfntinst.sty"
640 "xfntinst.sty"
641 "finstmsc.sty"
642 "fontinst.ini")
643 ("/tex/fontinst/misc"
644 "csc2x.tex"
645 "csckrn2x.tex"
646 "osf2x.tex")
647 ("/tex/latex/fontinst"
648 "fontdoc.sty")))
649 #t)))))))
650 (native-inputs
651 `(("texlive-bin" ,texlive-bin)
652 ("texlive-docstrip" ,texlive-docstrip)))
653 (home-page "https://www.ctan.org/pkg/fontinst")
654 (synopsis "Tools for converting and installing fonts for TeX and LaTeX")
655 (description "This package provides TeX macros for converting Adobe Font
656 Metric files to TeX metric and virtual font format. Fontinst helps mainly
657 with the number crunching and shovelling parts of font installation. This
658 means in practice that it creates a number of files which give the TeX
659 metrics (and related information) for a font family that TeX needs to do any
660 typesetting in these fonts.")
661 (license license:lppl1.1+))))
662
663 (define-public texlive-tex-fontinst-base
664 (deprecated-package "texlive-tex-fontinst-base" texlive-fontinst))
665
666 (define-public texlive-fontname
667 (package
668 (inherit (simple-texlive-package
669 "texlive-fontname"
670 (list "/doc/fonts/fontname/fontname.texi"
671 "/fonts/map/fontname/")
672 (base32
673 "0h5im5rnhycrrkd6z10f17m2caa8lv594wf482b68qjmnxfrqnxj")
674 #:trivial? #t))
675 (home-page "https://www.ctan.org/pkg/fontname")
676 (synopsis "Scheme for naming fonts in TeX")
677 (description "This is Fontname, a naming scheme for (the base part of)
678 external TeX font filenames. This makes at most eight-character names
679 from (almost) arbitrarily complex font names, thus helping portability of TeX
680 documents.")
681 (license license:public-domain)))
682
683 (define-public texlive-fonts-cm
684 (package
685 (inherit (simple-texlive-package
686 "texlive-fonts-cm"
687 (list "/fonts/source/public/cm/"
688 "/fonts/map/dvips/cm/cmtext-bsr-interpolated.map"
689 "/doc/fonts/cm/README"
690 "/doc/fonts/cm/README-cmps.txt")
691 (base32
692 "1h0q71paqmg1xjg6k35ni2i6m93kmlq9rdwm913xg9n4qngywl18")))
693 (outputs '("out" "doc"))
694 (build-system gnu-build-system)
695 (arguments
696 `(#:modules ((guix build gnu-build-system)
697 (guix build utils)
698 (srfi srfi-1)
699 (srfi srfi-26))
700 #:tests? #f ; no tests
701 #:phases
702 (modify-phases %standard-phases
703 (delete 'configure)
704 (replace 'build
705 (lambda* (#:key inputs #:allow-other-keys)
706 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
707 ;; Tell mf where to find mf.base
708 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
709 ;; Tell mf where to look for source files
710 (setenv "MFINPUTS"
711 (string-append (getcwd) "/fonts/source/public/cm/:"
712 mf "/share/texmf-dist/metafont/base")))
713 (for-each make-file-writable
714 (cons "fonts/source/public/cm/"
715 (find-files "fonts/source/public/cm/" ".*")))
716 (let ((build (string-append (getcwd) "/build"))
717 (pkdir (string-append (getcwd) "/pk/ljfour/public/cm/dpi600")))
718 (mkdir-p pkdir)
719 (mkdir-p build)
720 (with-directory-excursion "fonts/source/public/cm/"
721 (for-each (lambda (font)
722 (format #t "building font ~a\n" font)
723 (invoke "mf" "-progname=mf"
724 (string-append "-output-directory=" build)
725 (string-append "\\"
726 "mode:=ljfour; "
727 "mag:=1+0/600; "
728 "scrollmode; "
729 "input "
730 (basename font ".mf")))
731 (invoke "gftopk"
732 (string-append build "/"
733 (basename font ".mf") ".600gf")
734 (string-append pkdir "/"
735 (basename font ".mf") ".pk")))
736 (find-files "." "cm(.*[0-9]+.*|inch)\\.mf$"))))
737 #t))
738 (replace 'install
739 (lambda* (#:key inputs outputs #:allow-other-keys)
740 (let* ((out (assoc-ref outputs "out"))
741 (doc (assoc-ref outputs "doc"))
742 (source (assoc-ref inputs "source"))
743 (fonts (string-append out "/share/texmf-dist/fonts/"))
744 (pk (string-append fonts "pk"))
745 (tfm (string-append fonts "tfm/public/cm"))
746 (mf (string-append fonts "source/public/cm")))
747 (for-each (cut install-file <> tfm)
748 (find-files "build" "\\.*"))
749 (for-each (cut install-file <> mf)
750 (find-files "." "\\.mf"))
751 (copy-recursively "pk" pk)
752 (copy-recursively
753 (string-append source "/doc")
754 (string-append doc "/doc"))
755 (install-file
756 (string-append source "/fonts/map/dvips/cm/cmtext-bsr-interpolated.map")
757 (string-append fonts "/map/dvips/cm/cmtext-bsr-interpolated.map"))
758 #t))))))
759 (native-inputs
760 `(("texlive-bin" ,texlive-bin)
761 ("texlive-metafont-base" ,texlive-metafont-base)))
762 (home-page "https://www.ctan.org/pkg/cm")
763 (synopsis "Computer Modern fonts for TeX")
764 (description "This package provides the Computer Modern fonts by Donald
765 Knuth. The Computer Modern font family is a large collection of text,
766 display, and mathematical fonts in a range of styles, based on Monotype Modern
767 8A.")
768 (license license:knuth)))
769
770 (define-public texlive-cm-super
771 (let ((template (simple-texlive-package
772 "texlive-cm-super"
773 (list "/doc/fonts/cm-super/"
774 "/dvips/cm-super/"
775 "/fonts/afm/public/cm-super/"
776 "/fonts/enc/dvips/cm-super/"
777 "/fonts/map/dvips/cm-super/"
778 "/fonts/map/vtex/cm-super/"
779 "/fonts/type1/public/cm-super/"
780 "/tex/latex/cm-super/")
781 (base32
782 "1k3afl0x0bqbr5mnawbnp7rr2126dwn0vwnxzibm9ggvzqilnkm6")
783 #:trivial? #t)))
784 (package
785 (inherit template)
786 (arguments
787 (substitute-keyword-arguments (package-arguments template)
788 ((#:phases phases)
789 `(modify-phases ,phases
790 (delete 'reset-gzip-timestamps)))))
791 (home-page "https://www.ctan.org/pkg/cm-super")
792 (synopsis "Computer Modern Super family of fonts")
793 (description "The CM-Super family provides Adobe Type 1 fonts that replace
794 the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,
795 T1/TS1-encoded CM bright and LH Cyrillic fonts (thus supporting all European
796 languages except Greek), and bringing many ameliorations in typesetting
797 quality. The fonts exhibit the same metrics as the METAFONT-encoded
798 originals.")
799 ;; With font exception
800 (license license:gpl2+))))
801
802 (define-public texlive-fonts-cm-super
803 (deprecated-package "texlive-fonts-cm-super" texlive-cm-super))
804
805 (define-public texlive-lm
806 (package
807 (inherit (simple-texlive-package
808 "texlive-lm"
809 (list "/doc/fonts/lm/"
810 "/fonts/afm/public/lm/"
811 "/fonts/enc/dvips/lm/"
812 "/fonts/map/dvipdfm/lm/"
813 "/fonts/map/dvips/lm/"
814 "/fonts/opentype/public/lm/"
815 "/fonts/tfm/public/lm/"
816 "/fonts/type1/public/lm/"
817 "/tex/latex/lm/")
818 (base32
819 "0i1hwr8rp0jqyvs4qyplrirscd4w7lsgwsncyv3yzy80bsa56jq5")
820 #:trivial? #t))
821 (home-page "http://www.gust.org.pl/projects/e-foundry/latin-modern/")
822 (synopsis "Latin Modern family of fonts")
823 (description "The Latin Modern fonts are derived from the famous Computer
824 Modern fonts designed by Donald E. Knuth and described in Volume E of his
825 Computers & Typesetting series.")
826 ;; The GUST font license (GFL) is legally identical to the LaTeX Project
827 ;; Public License (LPPL), version 1.3c or later, but comes with an
828 ;; additional but not legally binding clause.
829 (license license:lppl1.3c+)))
830
831 (define-public texlive-fonts-lm
832 (deprecated-package "texlive-fonts-lm" texlive-lm))
833
834 (define-public texlive-fonts-knuth-lib
835 (package
836 (name "texlive-fonts-knuth-lib")
837 (version (number->string %texlive-revision))
838 (source (origin
839 (method svn-fetch)
840 (uri (svn-reference
841 (url (string-append "svn://www.tug.org/texlive/tags/"
842 %texlive-tag "/Master/texmf-dist/"
843 "/fonts/source/public/knuth-lib"))
844 (revision %texlive-revision)))
845 (file-name (string-append name "-" version "-checkout"))
846 (sha256
847 (base32
848 "0in9aqyi8jkyf9d16z0li50z5fpwj1iwgwm83gmvwqcf7chfs04y"))))
849 (build-system gnu-build-system)
850 (arguments
851 `(#:modules ((guix build gnu-build-system)
852 (guix build utils)
853 (srfi srfi-26))
854 #:tests? #f ; no tests
855 #:phases
856 (modify-phases %standard-phases
857 (delete 'configure)
858 (replace 'build
859 (lambda* (#:key inputs #:allow-other-keys)
860 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
861 ;; Tell mf where to find mf.base
862 (setenv "MFBASES"
863 (string-append mf "/share/texmf-dist/web2c"))
864 ;; Tell mf where to look for source files
865 (setenv "MFINPUTS"
866 (string-append (getcwd) ":"
867 mf "/share/texmf-dist/metafont/base")))
868 (mkdir "build")
869 (for-each (lambda (font)
870 (format #t "building font ~a\n" font)
871 (invoke "mf" "-progname=mf"
872 "-output-directory=build"
873 (string-append "\\"
874 "mode:=ljfour; "
875 "mag:=1; "
876 "batchmode; "
877 "input " font)))
878 (find-files "." "(manfnt|logo.+)\\.mf$"))
879 #t))
880 (replace 'install
881 (lambda* (#:key outputs #:allow-other-keys)
882 (let* ((out (assoc-ref outputs "out"))
883 (tfm (string-append
884 out "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
885 (mf (string-append
886 out "/share/texmf-dist/fonts/source/public/knuth-lib")))
887 (for-each (cut install-file <> tfm)
888 (find-files "build" "\\.*"))
889 (for-each (cut install-file <> mf)
890 (find-files "." "\\.mf"))
891 #t))))))
892 (native-inputs
893 `(("texlive-bin" ,texlive-bin)
894 ("texlive-metafont-base" ,texlive-metafont-base)))
895 (home-page "https://www.ctan.org/pkg/knuth-lib")
896 (synopsis "Small library of METAFONT sources")
897 (description "This is a collection of core TeX and METAFONT macro files
898 from Donald Knuth, including the plain format, plain base, and the MF logo
899 fonts.")
900 (license license:knuth)))
901
902 (define-public texlive-fonts-latex
903 (package
904 (name "texlive-fonts-latex")
905 (version (number->string %texlive-revision))
906 (source (origin
907 (method svn-fetch)
908 (uri (svn-reference
909 (url (string-append "svn://www.tug.org/texlive/tags/"
910 %texlive-tag "/Master/texmf-dist/"
911 "/fonts/source/public/latex-fonts"))
912 (revision %texlive-revision)))
913 (file-name (string-append name "-" version "-checkout"))
914 (sha256
915 (base32
916 "0ypsm4xv9cw0jckk2qc7gi9hcmhf31mrg56pz3llyx3yd9vq2lps"))))
917 (build-system gnu-build-system)
918 (arguments
919 `(#:modules ((guix build gnu-build-system)
920 (guix build utils)
921 (srfi srfi-1)
922 (srfi srfi-26))
923 #:tests? #f ; no tests
924 #:phases
925 (modify-phases %standard-phases
926 (delete 'configure)
927 (replace 'build
928 (lambda* (#:key inputs #:allow-other-keys)
929 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
930 ;; Tell mf where to find mf.base
931 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
932 ;; Tell mf where to look for source files
933 (setenv "MFINPUTS"
934 (string-append (getcwd) ":"
935 mf "/share/texmf-dist/metafont/base:"
936 (assoc-ref inputs "texlive-fonts-cm")
937 "/share/texmf-dist/fonts/source/public/cm")))
938 (mkdir "build")
939 (for-each (lambda (font)
940 (format #t "building font ~a\n" font)
941 (invoke "mf" "-progname=mf"
942 "-output-directory=build"
943 (string-append "\\"
944 "mode:=ljfour; "
945 "mag:=1; "
946 "batchmode; "
947 "input " font)))
948 '("icmcsc10" "icmex10" "icmmi8" "icmsy8" "icmtt8"
949 "ilasy8" "ilcmss8" "ilcmssb8" "ilcmssi8"
950 "lasy5" "lasy6" "lasy7" "lasy8" "lasy9" "lasy10" "lasyb10"
951 "lcircle10" "lcirclew10" "lcmss8" "lcmssb8" "lcmssi8"
952 "line10" "linew10"))
953 #t))
954 (replace 'install
955 (lambda* (#:key outputs #:allow-other-keys)
956 (let* ((out (assoc-ref outputs "out"))
957 (tfm (string-append
958 out "/share/texmf-dist/fonts/tfm/public/latex-fonts"))
959 (mf (string-append
960 out "/share/texmf-dist/fonts/source/public/latex-fonts")))
961 (for-each (cut install-file <> tfm)
962 (find-files "build" "\\.*"))
963 (for-each (cut install-file <> mf)
964 (find-files "." "\\.mf"))
965 #t))))))
966 (native-inputs
967 `(("texlive-bin" ,texlive-bin)
968 ("texlive-metafont-base" ,texlive-metafont-base)
969 ("texlive-fonts-cm" ,texlive-fonts-cm)))
970 (home-page "https://www.ctan.org/pkg/latex-fonts")
971 (synopsis "Collection of fonts used in LaTeX distributions")
972 (description "This is a collection of fonts for use with standard LaTeX
973 packages and classes. It includes invisible fonts (for use with the slides
974 class), line and circle fonts (for use in the picture environment) and LaTeX
975 symbol fonts.")
976 (license license:lppl1.2+)))
977
978 (define-public texlive-latex-mflogo
979 (package
980 (name "texlive-latex-mflogo")
981 (version (number->string %texlive-revision))
982 (source
983 (origin
984 (method svn-fetch)
985 (uri (texlive-ref "latex" "mflogo"))
986 (sha256
987 (base32
988 "15i2ib6nvhf31g1b92c6njf7n0g29znlq7hbfp9ii7qabhcwwvrj"))))
989 (build-system texlive-build-system)
990 (arguments '(#:tex-directory "latex/mflogo"))
991 (home-page "http://www.ctan.org/pkg/mflogo")
992 (synopsis "LaTeX support for Metafont logo fonts")
993 (description
994 "This package provides LaTeX and font definition files to access the
995 Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont
996 logos in LaTeX documents.")
997 (license license:lppl)))
998
999 (define-public texlive-mflogo-font
1000 (package
1001 (inherit (simple-texlive-package
1002 "texlive-mflogo-font"
1003 (list "/doc/fonts/mflogo-font/README"
1004 "/fonts/afm/hoekwater/mflogo-font/"
1005 "/fonts/map/dvips/mflogo-font/"
1006 "/fonts/type1/hoekwater/mflogo-font/")
1007 (base32
1008 "094mknjv8ki2pvj1zin0f1z4f1w12g0cfqjiqcsawjsry4yfrmbg")
1009 #:trivial? #t))
1010 (home-page "https://www.ctan.org/pkg/mflogo-font")
1011 (synopsis "Metafont logo font")
1012 (description
1013 "These fonts were created in METAFONT by Knuth, for his own publications.
1014 At some stage, the letters P and S were added, so that the METAPOST logo could
1015 also be expressed. The fonts were originally issued (of course) as METAFONT
1016 source; they have since been autotraced and reissued in Adobe Type 1 format by
1017 Taco Hoekwater.")
1018 (license license:knuth)))
1019
1020 (define-public texlive-fonts-mflogo-font
1021 (deprecated-package "texlive-fonts-mflogo-font" texlive-mflogo-font))
1022
1023 (define-public texlive-fonts-amsfonts
1024 (package
1025 (name "texlive-fonts-amsfonts")
1026 (version (number->string %texlive-revision))
1027 (source (origin
1028 (method svn-fetch)
1029 (uri (svn-reference
1030 (url (string-append "svn://www.tug.org/texlive/tags/"
1031 %texlive-tag "/Master/texmf-dist/"
1032 "/fonts/source/public/amsfonts"))
1033 (revision %texlive-revision)))
1034 (file-name (string-append name "-" version "-checkout"))
1035 (sha256
1036 (base32
1037 "07h20rvpbdb4k72hzmjkyb29426zr9wxsfp6yd4ajbbpd3vx8grb"))))
1038 (build-system gnu-build-system)
1039 (arguments
1040 `(#:modules ((guix build gnu-build-system)
1041 (guix build utils)
1042 (ice-9 match)
1043 (srfi srfi-1)
1044 (srfi srfi-26))
1045 #:tests? #f ; no tests
1046 #:phases
1047 (modify-phases %standard-phases
1048 (delete 'configure)
1049 (replace 'build
1050 (lambda* (#:key inputs #:allow-other-keys)
1051 (let ((mf (assoc-ref inputs "texlive-union"))
1052 (cwd (getcwd)))
1053 ;; Make METAFONT reproducible
1054 (setenv "SOURCE_DATE_EPOCH" "1")
1055 ;; Tell mf where to find mf.base
1056 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
1057 ;; Tell mf where to look for source files
1058 (setenv "MFINPUTS"
1059 (string-append cwd ":"
1060 cwd "/cmextra:"
1061 cwd "/cyrillic:"
1062 cwd "/dummy:"
1063 cwd "/symbols:"
1064 mf "/share/texmf-dist/metafont/base:"
1065 (assoc-ref inputs "texlive-fonts-cm")
1066 "/share/texmf-dist/fonts/source/public/cm")))
1067 (mkdir "build")
1068 (for-each (lambda (font)
1069 (format #t "building font ~a\n" (basename font ".mf"))
1070 (with-directory-excursion (dirname font)
1071 (invoke "mf" "-progname=mf"
1072 "-output-directory=../build"
1073 (string-append "\\"
1074 "mode:=ljfour; "
1075 "mag:=1; "
1076 "nonstopmode; "
1077 "input "
1078 (getcwd) "/"
1079 (basename font ".mf")))))
1080 (find-files "." "[0-9]+\\.mf$"))
1081
1082 ;; There are no metafont sources for the Euler fonts, so we
1083 ;; convert the afm files instead.
1084 (mkdir "build/euler")
1085 (for-each (lambda (font)
1086 (format #t "converting afm font ~a\n" (basename font ".afm"))
1087 (invoke "afm2tfm" font
1088 (string-append "build/euler/"
1089 (basename font ".tfm"))))
1090 (find-files (assoc-ref inputs "amsfonts-afm")
1091 "\\.afm$"))
1092
1093 ;; Frustratingly, not all fonts can be created this way. To
1094 ;; generate eufm8.tfm, for example, we first scale down
1095 ;; eufm10.afm to eufm8.pl, and then generate the tfm file from
1096 ;; the pl file.
1097 (with-directory-excursion "build/euler"
1098 (setenv "TEXINPUTS"
1099 (string-append (getcwd) "//:"
1100 (assoc-ref inputs "amsfonts-afm") "//:"
1101 (assoc-ref inputs "texlive-union") "//"))
1102 (for-each (match-lambda
1103 (((target-base target-size)
1104 (source-base source-size))
1105 (let ((factor (number->string
1106 (truncate/ (* 1000 target-size)
1107 source-size))))
1108 (invoke "tex"
1109 "-interaction=scrollmode"
1110 (string-append "\\input fontinst.sty "
1111 "\\transformfont{" target-base "}"
1112 "{\\scalefont{" factor "}"
1113 "{\\fromafm{" source-base "}}} "
1114 "\\bye")))
1115 (invoke "pltotf"
1116 (string-append target-base ".pl")
1117 (string-append target-base ".tfm"))
1118 (delete-file (string-append target-base ".pl"))))
1119
1120 '((("eufm8" 8) ("eufm10" 10))
1121
1122 (("eufb6" 6) ("eufb7" 7))
1123 (("eufb8" 8) ("eufb10" 10))
1124 (("eufb9" 9) ("eufb10" 10))
1125
1126 (("eufm6" 6) ("eufb7" 7))
1127 (("eufm9" 9) ("eufb10" 10))
1128
1129 (("eurb6" 6) ("eurb7" 7))
1130 (("eurb8" 8) ("eurb10" 10))
1131 (("eurb9" 9) ("eurb10" 10))
1132
1133 (("eurm6" 6) ("eurm7" 7))
1134 (("eurm8" 8) ("eurm10" 10))
1135 (("eurm9" 9) ("eurm10" 10)))))
1136 #t))
1137 (replace 'install
1138 (lambda* (#:key inputs outputs #:allow-other-keys)
1139 (let* ((out (assoc-ref outputs "out"))
1140 (root (string-append out "/share/texmf-dist/fonts/"))
1141 (pkgs '(("amsfonts-afm" . "afm/public/amsfonts")
1142 ("amsfonts-type1" . "type1/public/amsfonts")
1143 ("amsfonts-map" . "map/dvips/amsfonts"))))
1144 (for-each (match-lambda
1145 ((pkg . dir)
1146 (let ((target (string-append root dir)))
1147 (mkdir-p target)
1148 (copy-recursively (assoc-ref inputs pkg)
1149 target))))
1150 pkgs)
1151 (copy-recursively (assoc-ref inputs "amsfonts-plain")
1152 (string-append out "/share/texmf-dist/tex/plain/amsfonts"))
1153 (let* ((tfm (string-append root "tfm/public/amsfonts"))
1154 (mf (string-append root "source/public/amsfonts")))
1155 (copy-recursively "build" tfm)
1156 (for-each (cut install-file <> mf)
1157 (find-files "." "\\.mf"))
1158 #t)))))))
1159 (native-inputs
1160 `(("texlive-union" ,(texlive-union (list texlive-tex-fontinst-base
1161 texlive-fonts-cm
1162 texlive-metafont-base)))
1163 ("amsfonts-plain"
1164 ,(origin
1165 (method svn-fetch)
1166 (uri (svn-reference
1167 (url (string-append "svn://www.tug.org/texlive/tags/"
1168 %texlive-tag "/Master/texmf-dist/"
1169 "/tex/plain/amsfonts"))
1170 (revision %texlive-revision)))
1171 (file-name (string-append name "-plain-" version "-checkout"))
1172 (sha256
1173 (base32
1174 "1hi8c9rkfb6395sxf7fhkr91xygfg8am1hqij9g3h2c7qx3714qp"))))
1175 ("amsfonts-map"
1176 ,(origin
1177 (method svn-fetch)
1178 (uri (svn-reference
1179 (url (string-append "svn://www.tug.org/texlive/tags/"
1180 %texlive-tag "/Master/texmf-dist/"
1181 "/fonts/map/dvips/amsfonts"))
1182 (revision %texlive-revision)))
1183 (file-name (string-append name "-map-" version "-checkout"))
1184 (sha256
1185 (base32
1186 "1lrj3bd9ybj4aawzlygc6qvakbrwc5s0mc5n9rpic331frv3axfs"))))
1187 ("amsfonts-type1"
1188 ,(origin
1189 (method svn-fetch)
1190 (uri (svn-reference
1191 (url (string-append "svn://www.tug.org/texlive/tags/"
1192 %texlive-tag "/Master/texmf-dist/"
1193 "/fonts/type1/public/amsfonts"))
1194 (revision %texlive-revision)))
1195 (file-name (string-append name "-type1-" version "-checkout"))
1196 (sha256
1197 (base32
1198 "1zfz33vn6gm19njy74n8wmn7sljrimfhwns5z8qqhxqfh1g4qip2"))))
1199 ("amsfonts-afm"
1200 ,(origin
1201 (method svn-fetch)
1202 (uri (svn-reference
1203 (url (string-append "svn://www.tug.org/texlive/tags/"
1204 %texlive-tag "/Master/texmf-dist/"
1205 "/fonts/afm/public/amsfonts"))
1206 (revision %texlive-revision)))
1207 (file-name (string-append name "-afm-" version "-checkout"))
1208 (sha256
1209 (base32
1210 "1fifzkaihmjgchnk7dmw0c23k0cz999dxnc78ivmqvgi1dhx0iv8"))))))
1211 (home-page "https://www.ctan.org/pkg/amsfonts")
1212 (synopsis "TeX fonts from the American Mathematical Society")
1213 (description
1214 "This package provides an extended set of fonts for use in mathematics,
1215 including: extra mathematical symbols; blackboard bold letters (uppercase
1216 only); fraktur letters; subscript sizes of bold math italic and bold Greek
1217 letters; subscript sizes of large symbols such as sum and product; added sizes
1218 of the Computer Modern small caps font; cyrillic fonts (from the University of
1219 Washington); Euler mathematical fonts. All fonts are provided as Adobe Type 1
1220 files, and all except the Euler fonts are provided as Metafont source. The
1221 distribution also includes the canonical Type 1 versions of the Computer
1222 Modern family of fonts. The Euler fonts are supported by separate packages;
1223 details can be found in the documentation.")
1224 (license license:silofl1.1)))
1225
1226 (define-public texlive-latex-amsfonts
1227 (package
1228 (name "texlive-latex-amsfonts")
1229 (version (number->string %texlive-revision))
1230 (source (origin
1231 (method svn-fetch)
1232 (uri (texlive-ref "latex" "amsfonts"))
1233 (file-name (string-append name "-" version "-checkout"))
1234 (sha256
1235 (base32
1236 "0slzfv5h2m03b2xvm2sasznz4azh6rgi069z161dja3l8rln79hm"))))
1237 (build-system texlive-build-system)
1238 (arguments '(#:tex-directory "latex/amsfonts"))
1239 (native-inputs
1240 `(("texlive-fonts-cm" ,texlive-fonts-cm)
1241 ("texlive-metafont-base" ,texlive-metafont-base)))
1242 (home-page "https://www.ctan.org/pkg/amsfonts")
1243 (synopsis "TeX fonts from the American Mathematical Society")
1244 (description
1245 "This package provides basic LaTeX support for the symbol fonts provides
1246 by the amsfonts package. It provides @code{amsfonts.sty}, with names of
1247 individual symbols defined in @code{amssymb.sty}.")
1248 (license license:silofl1.1)))
1249
1250 (define-public texlive-mkpattern
1251 (package
1252 (inherit (simple-texlive-package
1253 "texlive-mkpattern"
1254 (list "/doc/plain/mkpattern/README"
1255 "/doc/plain/mkpattern/mkpatdoc.tex"
1256 "/doc/plain/mkpattern/mkpatter.pdf"
1257 "/doc/plain/mkpattern/mkpattern-exmpl.tex"
1258 "/tex/plain/mkpattern/mkpatter.tex")
1259 (base32
1260 "0sxnkbcc802jl3fj56x9hvg978bpv15lhrwj0aykb4syq29l47ga")
1261 #:trivial? #t))
1262 (home-page "https://ctan.org/pkg/mkpattern")
1263 (synopsis "Utility for making hyphenation patterns")
1264 (description "Mkpattern is a general purpose program for the generation of
1265 hyphenation patterns, with definition of letter sets and template-like
1266 constructions. It also provides an easy way to handle different input and
1267 output encodings, and features generation of clean UTF-8 patterns.")
1268 (license license:lppl)))
1269
1270 ;; This provides etex.src which is needed to build various formats, including
1271 ;; luatex.fmt and pdflatex.fmt
1272 (define-public texlive-etex
1273 (let ((template (simple-texlive-package
1274 "texlive-etex"
1275 (list "/doc/etex/base/"
1276 "/doc/man/man1/etex.1"
1277 "/doc/man/man1/etex.man1.pdf"
1278 "/tex/plain/etex/"
1279 "/fonts/source/public/etex/")
1280 (base32
1281 "1qv6vxm5a8pw38gas3i69ivmsn79zj2yq5n5vdmh0rzic5hw2hmc")
1282 #:trivial? #t)))
1283 (package
1284 (inherit template)
1285 (arguments
1286 (substitute-keyword-arguments (package-arguments template)
1287 ((#:phases phases)
1288 `(modify-phases ,phases
1289 ;; Build tfm font.
1290 (replace 'build
1291 (lambda* (#:key inputs #:allow-other-keys)
1292 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
1293 ;; Tell mf where to find mf.base
1294 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
1295 ;; Tell mf where to look for source files
1296 (setenv "MFINPUTS"
1297 (string-append (getcwd)
1298 "/fonts/source/public/etex/:"
1299 mf "/share/texmf-dist/metafont/base:"
1300 (assoc-ref inputs "texlive-fonts-cm")
1301 "/share/texmf-dist/fonts/source/public/cm")))
1302 (invoke "mf" "-progname=mf"
1303 (string-append "\\"
1304 "mode:=ljfour; "
1305 "mag:=1; "
1306 "scrollmode; "
1307 "input xbmc10"))
1308 #t))
1309 (add-after 'install 'install-font
1310 (lambda* (#:key outputs #:allow-other-keys)
1311 (install-file
1312 "xbmc10.tfm"
1313 (string-append (assoc-ref outputs "out")
1314 "/share/texmf-dist/fonts/tfm/public/etex/"))
1315 #t))))))
1316 (native-inputs
1317 `(("texlive-bin" ,texlive-bin)
1318 ("texlive-metafont-base" ,texlive-metafont-base)
1319 ("texlive-fonts-cm" ,texlive-fonts-cm)))
1320 (home-page "https://www.ctan.org/pkg/etex")
1321 (synopsis "Extended version of TeX")
1322 (description
1323 "This package provides an extended version of TeX (which is capable of
1324 running as if it were TeX unmodified). E-TeX has been specified by the LaTeX
1325 team as the engine for the development of LaTeX2e; as a result, LaTeX
1326 programmers may assume e-TeX functionality. The pdftex engine directly
1327 incorporates the e-TeX extensions.")
1328 (license license:knuth))))
1329
1330 (define-public texlive-tex-plain
1331 (package
1332 (name "texlive-tex-plain")
1333 (version (number->string %texlive-revision))
1334 (source (origin
1335 (method svn-fetch)
1336 (uri (svn-reference
1337 (url (string-append "svn://www.tug.org/texlive/tags/"
1338 %texlive-tag "/Master/texmf-dist/"
1339 "/tex/plain"))
1340 (revision %texlive-revision)))
1341 (file-name (string-append name "-" version "-checkout"))
1342 (sha256
1343 (base32
1344 "1xknlb3gcw6jjqh97bhghxi594bzpj1zfzzfsrr9pvr9s1bx7dnf"))))
1345 (build-system trivial-build-system)
1346 (arguments
1347 `(#:modules ((guix build utils))
1348 #:builder
1349 (begin
1350 (use-modules (guix build utils))
1351 (let ((target (string-append (assoc-ref %outputs "out")
1352 "/share/texmf-dist/tex/plain")))
1353 (mkdir-p target)
1354 (copy-recursively (assoc-ref %build-inputs "source") target)
1355 #t))))
1356 (home-page "https://www.ctan.org/pkg/plain")
1357 (synopsis "Plain TeX format and supporting files")
1358 (description
1359 "Contains files used to build the Plain TeX format, as described in the
1360 TeXbook, together with various supporting files (some also discussed in the
1361 book).")
1362 (license license:knuth)))
1363
1364 (define-public texlive-hyphen-afrikaans
1365 (package
1366 (inherit (texlive-hyphen-package
1367 "texlive-hyphen-afrikaans" "af"
1368 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex")
1369 (base32
1370 "1vb3jccqnn1pm0680yqx52kvz595fmxnwa0cbf8qman6zglsssiw")))
1371 (synopsis "Hyphenation patterns for Afrikaans")
1372 (description "The package provides hyphenation patterns for the Afrikaans
1373 language.")
1374 (license license:lppl1.3+)))
1375
1376 (define-public texlive-hyphen-ancientgreek
1377 (package
1378 (inherit (texlive-hyphen-package
1379 "texlive-hyphen-ancientgreek" "grc"
1380 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex"
1381 "/tex/generic/hyphen/grahyph5.tex"
1382 "/tex/generic/hyphen/ibyhyph.tex")
1383 (base32
1384 "0kwrqsz7wdr1d9kylzwp60ka3wfbj8iad029k5h6y94nb86mf7zv")))
1385 (synopsis "Hyphenation patterns for ancient Greek")
1386 (description "The package provides hyphenation patterns for ancient
1387 Greek.")
1388 (license license:lppl1.3+)))
1389
1390 (define-public texlive-hyphen-armenian
1391 (let ((template (texlive-hyphen-package
1392 "texlive-hyphen-armenian" "hy"
1393 (list "/source/generic/hyph-utf8/languages/hy/generate_patterns_hy.rb")
1394 (base32
1395 "0z666y580w1kpxssdanz67ykq257lf11a1mnp1jrn08zijvfrw9c"))))
1396 (package
1397 (inherit template)
1398 (arguments
1399 (substitute-keyword-arguments (package-arguments template)
1400 ((#:phases phases)
1401 `(modify-phases ,phases
1402 (add-before 'build 'build-patterns
1403 (lambda _
1404 (let ((target (string-append (getcwd)
1405 "/tex/generic/hyph-utf8/patterns/tex")))
1406 (mkdir-p target)
1407 (with-directory-excursion "source/generic/hyph-utf8/languages/hy/"
1408 (substitute* "generate_patterns_hy.rb"
1409 (("\\$file = File.new.*")
1410 (string-append "$file = File.new(\"" target
1411 "/hyph-hy.tex\",\"w\")\n")))
1412 (invoke "ruby" "generate_patterns_hy.rb"))
1413 #t)))
1414 (add-after 'install 'install-hyph-hy.tex
1415 (lambda* (#:key inputs outputs #:allow-other-keys)
1416 (let* ((out (assoc-ref outputs "out"))
1417 (target (string-append out "/share/texmf-dist/tex")))
1418 (copy-recursively "tex" target)
1419 #t)))))))
1420 (synopsis "Hyphenation patterns for Armenian")
1421 (description "The package provides hyphenation patterns for the Armenian
1422 language.")
1423 ;; Any version of the LGPL.
1424 (license license:lgpl3+))))
1425
1426 (define-public texlive-hyphen-basque
1427 (let ((template (texlive-hyphen-package
1428 "texlive-hyphen-basque" "eu"
1429 (list "/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb")
1430 (base32
1431 "1yhsbzf1g9dm70jfixsz51hsfvn26cwfkfxvhg7xv2piynr4v51l"))))
1432 (package
1433 (inherit template)
1434 (arguments
1435 (substitute-keyword-arguments (package-arguments template)
1436 ((#:phases phases)
1437 `(modify-phases ,phases
1438 (add-before 'build 'build-patterns
1439 (lambda _
1440 (let ((target (string-append (getcwd)
1441 "/tex/generic/hyph-utf8/patterns/tex")))
1442 (mkdir-p target)
1443 (with-directory-excursion "source/generic/hyph-utf8/languages/eu/"
1444 (substitute* "generate_patterns_eu.rb"
1445 (("\\$file = File.new.*")
1446 (string-append "$file = File.new(\"" target
1447 "/hyph-eu.tex\",\"w\")\n")))
1448 (invoke "ruby" "generate_patterns_eu.rb"))
1449 #t)))
1450 (add-after 'install 'install-hyph-eu.tex
1451 (lambda* (#:key inputs outputs #:allow-other-keys)
1452 (let* ((out (assoc-ref outputs "out"))
1453 (target (string-append out "/share/texmf-dist/tex")))
1454 (copy-recursively "tex" target)
1455 #t)))))))
1456 (synopsis "Hyphenation patterns for Basque")
1457 (description "The package provides hyphenation patterns for the Basque
1458 language.")
1459 ;; "Free for any purpose".
1460 (license (license:fsf-free
1461 "/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb")))))
1462
1463 (define-public texlive-hyphen-belarusian
1464 (package
1465 (inherit (texlive-hyphen-package
1466 "texlive-hyphen-belarusian" "be"
1467 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex")
1468 (base32
1469 "1xvffph824rg43gi2xs3ny9gzlp708fyxj9zfhckmg8pzh9vv3n6")))
1470 (synopsis "Hyphenation patterns for Belarusian")
1471 (description "The package provides hyphenation patterns for the Belarusian
1472 language.")
1473 (license license:expat)))
1474
1475 (define-public texlive-hyphen-bulgarian
1476 (package
1477 (inherit (texlive-hyphen-package
1478 "texlive-hyphen-bulgarian" "bg"
1479 (list "/doc/generic/hyph-utf8/bg/azbukaExtended.pdf"
1480 "/doc/generic/hyph-utf8/bg/azbukaExtended.tex"
1481 "/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex")
1482 (base32
1483 "06dxkk9azsggbri04i6g62lswygzadsx3rpqvbyzvbxc5wxz1dj1")))
1484 (synopsis "Hyphenation patterns for Bulgarian")
1485 (description "The package provides hyphenation patterns for the Bulgarian
1486 language in T2A and UTF-8 encodings.")
1487 (license (license:non-copyleft
1488 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex"
1489 "Ancestral BSD variant"))))
1490
1491 (define-public texlive-hyphen-catalan
1492 (package
1493 (inherit (texlive-hyphen-package
1494 "texlive-hyphen-catalan" "ca"
1495 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex")
1496 (base32
1497 "0cisx76jpw8kpd3an37m9h8ppiysnizgfzl48y9d9n3fvx8jyykb")))
1498 (synopsis "Hyphenation patterns for Catalan")
1499 (description "The package provides hyphenation patterns for Catalan in
1500 T1/EC and UTF-8 encodings.")
1501 (license license:lppl1.0+)))
1502
1503 (define-public texlive-hyphen-chinese
1504 (package
1505 (inherit (texlive-hyphen-package
1506 "texlive-hyphen-chinese" "zh-latn-pinyin"
1507 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex")
1508 (base32
1509 "07gbrn5fcl5d3hyg1zpai3zp1ggl73cmvpalwvh7ah313f57gjkk")))
1510 (synopsis "Hyphenation patterns for unaccented Chinese pinyin")
1511 (description "The package provides hyphenation patterns for unaccented
1512 Chinese pinyin T1/EC and UTF-8 encodings.")
1513 (license license:gpl2+)))
1514
1515 (define-public texlive-hyphen-churchslavonic
1516 (package
1517 (inherit (texlive-hyphen-package
1518 "texlive-hyphen-churchslavonic" "cu"
1519 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cu.tex")
1520 (base32
1521 "0xkqlz3ixyl4fxsnzrbxqrb82p0n67rhgpddbiyv3qwfnbr2b5a4")))
1522 (synopsis "Hyphenation patterns for Church Slavonic")
1523 (description "The package provides hyphenation patterns for Church
1524 Slavonic in UTF-8 encoding.")
1525 (license license:expat)))
1526
1527 (define-public texlive-hyphen-coptic
1528 (package
1529 (inherit (texlive-hyphen-package
1530 "texlive-hyphen-coptic" "cop"
1531 (list "/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex"
1532 "/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex")
1533 (base32
1534 "07i03jpdfy4ip7zbg4gnk4hk8zwj8rlni9dgrb1p8mfw2w19d80c")))
1535 (synopsis "Hyphenation patterns for Coptic")
1536 (description "The package provides hyphenation patterns for Coptic in
1537 UTF-8 encoding as well as in ASCII-based encoding for 8-bit engines.")
1538 ;; No explicit license declaration, so we use the project license.
1539 (license license:lppl)))
1540
1541 (define-public texlive-hyphen-croatian
1542 (package
1543 (inherit (texlive-hyphen-package
1544 "texlive-hyphen-croatian" "hr"
1545 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex")
1546 (base32
1547 "129nz2nqilyq2477n2clx20xfbxh1qxm69zg4n2f6c4d4a8711nc")))
1548 (synopsis "Hyphenation patterns for Croatian")
1549 (description "The package provides hyphenation patterns for Croatian in
1550 T1/EC and UTF-8 encodings.")
1551 (license license:lppl1.0+)))
1552
1553 (define-public texlive-hyphen-czech
1554 (package
1555 (inherit (texlive-hyphen-package
1556 "texlive-hyphen-czech" "cs"
1557 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex")
1558 (base32
1559 "1k5516gbfp1d5p97j247byag9sdgds5zwc11bwxfk58i6zq1v0m6")))
1560 (synopsis "Hyphenation patterns for Czech")
1561 (description "The package provides hyphenation patterns for Czech in T1/EC
1562 and UTF-8 encodings.")
1563 (license license:gpl2+)))
1564
1565 (define-public texlive-hyphen-danish
1566 (package
1567 (inherit (texlive-hyphen-package
1568 "texlive-hyphen-danish" "da"
1569 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex")
1570 (base32
1571 "0zxzs1b1723mav76i0wiyq4w82x8715cykvwa2bc60ldc2amv0vs")))
1572 (synopsis "Hyphenation patterns for Danish")
1573 (description "The package provides hyphenation patterns for Danish in
1574 T1/EC and UTF-8 encodings.")
1575 ;; Either LPPL 1.3 or later, or Expat
1576 (license (list license:lppl1.3+ license:expat))))
1577
1578 (define-public texlive-hyphen-dutch
1579 (package
1580 (inherit (texlive-hyphen-package
1581 "texlive-hyphen-dutch" "nl"
1582 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex")
1583 (base32
1584 "0cq46cmgjc4y2x0xs9b0a5zca3jmszv4rkzmrhgjb5z2nm3xkrpi")))
1585 (synopsis "Hyphenation patterns for Dutch")
1586 (description "The package provides hyphenation patterns for Dutch in T1/EC
1587 and UTF-8 encodings.")
1588 (license license:lppl1.0+)))
1589
1590 (define-public texlive-hyphen-english
1591 (package
1592 (inherit (texlive-hyphen-package
1593 "texlive-hyphen-english" '("en-gb" "en-us")
1594 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex"
1595 "/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex")
1596 (base32
1597 "08hyih8hn2w2q12gc4zygz0ckbz00mkzzn9898z2bicky02zg3kc")))
1598 (synopsis "Hyphenation patterns for American and British English")
1599 (description "The package provides additional hyphenation patterns for
1600 American and British English in ASCII encoding.")
1601 (license (license:non-copyleft
1602 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex"
1603 "FSF all permissive license"))))
1604
1605 (define-public texlive-hyphen-esperanto
1606 (package
1607 (inherit (texlive-hyphen-package
1608 "texlive-hyphen-esperanto" "eo"
1609 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex")
1610 (base32
1611 "03xbjbzasznsyf4wd45bya6f4snfmzpdzg5zpvqj5q6gjykdg54k")))
1612 (synopsis "Hyphenation patterns for Esperanto")
1613 (description "The package provides hyphenation patterns for Esperanto ISO
1614 Latin 3 and UTF-8 encodings.")
1615 (license license:lppl1.0+)))
1616
1617 (define-public texlive-hyphen-estonian
1618 (package
1619 (inherit (texlive-hyphen-package
1620 "texlive-hyphen-estonian" "et"
1621 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex")
1622 (base32
1623 "0idl6xajkkgxqngjn19jcfd29is5rhfn59v0z8h4sv8yjv6k934m")))
1624 (synopsis "Hyphenation patterns for Estonian")
1625 (description "The package provides hyphenation patterns for Estonian in
1626 T1/EC and UTF-8 encodings.")
1627 ;; Dual licensed under either license.
1628 (license (list license:lppl1.3+ license:expat))))
1629
1630 (define-public texlive-hyphen-ethiopic
1631 (let ((template (texlive-hyphen-package
1632 "texlive-hyphen-ethiopic" "mul-ethi"
1633 (list "/source/generic/hyph-utf8/languages/mul-ethi/generate_patterns_mul-ethi.lua")
1634 (base32
1635 "1dp5qn1mhv62kj27lqc7s0ca65z9bziyavkvif9ds5ivk7aq9drw"))))
1636 (package
1637 (inherit template)
1638 (arguments
1639 (substitute-keyword-arguments (package-arguments template)
1640 ((#:phases phases)
1641 `(modify-phases ,phases
1642 (add-before 'build 'build-patterns
1643 (lambda* (#:key inputs #:allow-other-keys)
1644 (let ((tex (string-append (getcwd)
1645 "/tex/generic/hyph-utf8/patterns/tex/")))
1646 (mkdir-p tex)
1647 (with-directory-excursion "source/generic/hyph-utf8/languages/mul-ethi/"
1648 (substitute* "generate_patterns_mul-ethi.lua"
1649 (("\"UnicodeData.txt\"")
1650 (string-append "\""
1651 (assoc-ref inputs "UnicodeData.txt")
1652 "\"")))
1653 (invoke "texlua" "generate_patterns_mul-ethi.lua")
1654 (rename-file "hyph-mul-ethi.tex"
1655 (string-append tex "/hyph-mul-ethi.tex"))
1656 #t))))
1657 (add-after 'install 'install-hyph-mul-ethi.tex
1658 (lambda* (#:key inputs outputs #:allow-other-keys)
1659 (let* ((out (assoc-ref outputs "out"))
1660 (target (string-append out "/share/texmf-dist/tex")))
1661 (copy-recursively "tex" target)
1662 #t)))))))
1663 (native-inputs
1664 `(,@(package-native-inputs template)
1665 ("texlive-bin" ,texlive-bin)
1666 ("UnicodeData.txt"
1667 ,(origin
1668 (method url-fetch)
1669 (uri (string-append "http://www.unicode.org/Public/10.0.0/ucd/"
1670 "UnicodeData.txt"))
1671 (sha256
1672 (base32
1673 "1cfak1j753zcrbgixwgppyxhm4w8vda8vxhqymi7n5ljfi6kwhjj"))))))
1674 (synopsis "Hyphenation patterns for Ethiopic scripts")
1675 (description "The package provides hyphenation patterns for languages
1676 written using the Ethiopic script for Unicode engines. They are not supposed
1677 to be linguistically relevant in all cases and should, for proper typography,
1678 be replaced by files tailored to individual languages.")
1679 (license license:lppl))))
1680
1681 (define-public texlive-hyphen-finnish
1682 (package
1683 (inherit (texlive-hyphen-package
1684 "texlive-hyphen-finnish" "fi"
1685 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex")
1686 (base32
1687 "03n6s8dwwa5vfk9bbyhcdf7p0bc0d1rrr312hpgbz8jfc9fbgd7n")))
1688 (synopsis "Hyphenation patterns for Finnish")
1689 (description "The package provides hyphenation patterns for Finnish in
1690 T1/EC and UTF-8 encodings.")
1691 (license license:public-domain)))
1692
1693 (define-public texlive-hyphen-french
1694 (package
1695 (inherit (texlive-hyphen-package
1696 "texlive-hyphen-french" "fr"
1697 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex")
1698 (base32
1699 "1q82mmwvy7fdkm42958ajb53w89qkcdwybswxlwcvqngvhpy3zf0")))
1700 (synopsis "Hyphenation patterns for French")
1701 (description "The package provides hyphenation patterns for French in
1702 T1/EC and UTF-8 encodings.")
1703 (license license:expat)))
1704
1705 (define-public texlive-hyphen-friulan
1706 (package
1707 (inherit (texlive-hyphen-package
1708 "texlive-hyphen-friulan" "fur"
1709 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex")
1710 (base32
1711 "07m975p0ghzs9sjqqgxy7qdkqmgvg4rx4xp08zwm1parqsdlwd5d")))
1712 (synopsis "Hyphenation patterns for Friulan")
1713 (description "The package provides hyphenation patterns for Friulan in
1714 ASCII encodings.")
1715 (license license:lppl1.3+)))
1716
1717 (define-public texlive-hyphen-galician
1718 (let ((template (texlive-hyphen-package
1719 "texlive-hyphen-galician" "gl"
1720 (list "/source/generic/hyph-utf8/languages/gl/README"
1721 "/source/generic/hyph-utf8/languages/gl/glhybiox.tex"
1722 "/source/generic/hyph-utf8/languages/gl/glhyextr.tex"
1723 "/source/generic/hyph-utf8/languages/gl/glhymed.tex"
1724 "/source/generic/hyph-utf8/languages/gl/glhyquim.tex"
1725 "/source/generic/hyph-utf8/languages/gl/glhytec.tex"
1726 "/source/generic/hyph-utf8/languages/gl/glhyxeog.tex"
1727 "/source/generic/hyph-utf8/languages/gl/glpatter-utf8.tex")
1728 (base32
1729 "1yj1gxhkqqlyaand5gd6ij6xwffskryzlbcigdam3871a9p8x18w"))))
1730 (package
1731 (inherit template)
1732 (arguments
1733 (substitute-keyword-arguments (package-arguments template)
1734 ((#:phases phases)
1735 `(modify-phases ,phases
1736 (add-before 'build 'build-patterns
1737 (lambda* (#:key inputs #:allow-other-keys)
1738 (let ((tex (string-append (getcwd)
1739 "/tex/generic/hyph-utf8/patterns/tex/")))
1740 (mkdir-p tex)
1741 (with-directory-excursion "source/generic/hyph-utf8/languages/gl/"
1742 (setenv "TEXINPUTS"
1743 (string-append (getcwd) "//:"
1744 (assoc-ref inputs "texlive-mkpattern") "//"))
1745 (invoke "tex" "-ini" "-8bit" "glpatter-utf8.tex")
1746 (rename-file "hyph-gl.tex"
1747 (string-append tex "/hyph-gl.tex"))
1748 #t))))
1749 (add-after 'install 'install-hyph-gl.tex
1750 (lambda* (#:key inputs outputs #:allow-other-keys)
1751 (let* ((out (assoc-ref outputs "out"))
1752 (target (string-append out "/share/texmf-dist/tex")))
1753 (copy-recursively "tex" target)
1754 #t)))))))
1755 (native-inputs
1756 `(,@(package-native-inputs template)
1757 ("texlive-bin" ,texlive-bin)
1758 ("texlive-mkpattern" ,texlive-mkpattern)))
1759 (synopsis "Hyphenation patterns for Galician")
1760 (description "The package provides hyphenation patterns for Galician in
1761 T1/EC and UTF-8 encodings.")
1762 ;; glhyextr.tex is the only file in the public domain.
1763 (license (list license:lppl1.3 license:public-domain)))))
1764
1765 (define-public texlive-hyphen-georgian
1766 (package
1767 (inherit (texlive-hyphen-package
1768 "texlive-hyphen-georgian" "ka"
1769 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex")
1770 (base32
1771 "01zhn6mflpiqw4lyi8dx8syiz5mky9jrxm87cgw31hanis5cml4l")))
1772 (synopsis "Hyphenation patterns for Georgian")
1773 (description "The package provides hyphenation patterns for Georgian in
1774 T8M, T8K, and UTF-8 encodings.")
1775 (license license:lppl1.3+)))
1776
1777 (define-public texlive-hyphen-german
1778 (package
1779 (inherit (texlive-hyphen-package
1780 "texlive-hyphen-german" '("de-1901" "de-1996" "de-ch-1901")
1781 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex"
1782 "/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex"
1783 "/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex"
1784 "/tex/generic/hyphen/dehyphn.tex"
1785 "/tex/generic/hyphen/dehypht.tex"
1786 "/tex/generic/hyphen/dehyphtex.tex"
1787 "/tex/generic/hyphen/ghyphen.README")
1788 (base32
1789 "1g0vhpvl2l69rn2lx7lkw0inrjbcxkj2sjgwd2fq7hdi4yb2ms76")))
1790 (synopsis "Hyphenation patterns for German")
1791 (description "This package provides hyphenation patterns for German in
1792 T1/EC and UTF-8 encodings, for traditional and reformed spelling, including
1793 Swiss German.")
1794 ;; The patterns are released under the Expat license; the dehyph* files
1795 ;; are released under the LPPL version 1 or later.
1796 (license (list license:expat license:lppl1.0+))))
1797
1798 (define-public texlive-hyphen-greek
1799 (package
1800 (inherit (texlive-hyphen-package
1801 "texlive-hyphen-greek" '("el-monoton" "el-polyton")
1802 (list "/doc/generic/elhyphen/"
1803 "/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex"
1804 "/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex"
1805 "/tex/generic/hyphen/grmhyph5.tex"
1806 "/tex/generic/hyphen/grphyph5.tex")
1807 (base32
1808 "04626jhlrv2flgdygm7sfv6xpqhfwiavi16gy2ac04iliyk4rypg")))
1809 (synopsis "Hyphenation patterns for Greek")
1810 (description "This package provides hyphenation patterns for Modern Greek
1811 in monotonic and polytonic spelling in LGR and UTF-8 encodings.")
1812 (license license:lppl)))
1813
1814 (define-public texlive-hyphen-hungarian
1815 (package
1816 (inherit (texlive-hyphen-package
1817 "texlive-hyphen-hungarian" "hu"
1818 (list "/doc/generic/huhyphen/"
1819 "/doc/generic/hyph-utf8/hu/"
1820 "/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex")
1821 (base32
1822 "0c81w2569cqsi4j56azwz0lfx16541zhiqgmn3m4iwh7mpx3rji8")))
1823 (synopsis "Hyphenation patterns for Hungarian")
1824 (description "This package provides hyphenation patterns for Hungarian in
1825 T1/EC and UTF-8 encodings.")
1826 ;; Any of these licenses
1827 (license (list license:gpl2 license:lgpl2.1+ license:mpl1.1))))
1828
1829 (define-public texlive-hyphen-icelandic
1830 (package
1831 (inherit (texlive-hyphen-package
1832 "texlive-hyphen-icelandic" "is"
1833 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex")
1834 (base32
1835 "1ah1f82lgfhqgid4ngsfiypybx10v8gwxnb12396vfsj3bq6j0ba")))
1836 (synopsis "Hyphenation patterns for Icelandic")
1837 (description "This package provides hyphenation patterns for Icelandic in
1838 T1/EC and UTF-8 encodings.")
1839 (license license:lppl1.2+)))
1840
1841 (define-public texlive-hyphen-indic
1842 (package
1843 (inherit (texlive-hyphen-package
1844 "texlive-hyphen-indic"
1845 '("as" "bn" "gu" "hi" "kn" "ml" "mr" "or" "pa" "ta" "te")
1846 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex"
1847 "/tex/generic/hyph-utf8/patterns/tex/hyph-bn.tex"
1848 "/tex/generic/hyph-utf8/patterns/tex/hyph-gu.tex"
1849 "/tex/generic/hyph-utf8/patterns/tex/hyph-hi.tex"
1850 "/tex/generic/hyph-utf8/patterns/tex/hyph-kn.tex"
1851 "/tex/generic/hyph-utf8/patterns/tex/hyph-ml.tex"
1852 "/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex"
1853 "/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex"
1854 "/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex"
1855 "/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex"
1856 "/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex")
1857 (base32
1858 "1v8zc3wdbkhzjrflndmz4gdj11syz8vrcg0vwvm5bwhkx23g91lv")))
1859 (synopsis "Indic hyphenation patterns")
1860 (description "This package provides hyphenation patterns for Assamese,
1861 Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil
1862 and Telugu for Unicode engines.")
1863 (license license:expat)))
1864
1865 (define-public texlive-hyphen-indonesian
1866 (package
1867 (inherit (texlive-hyphen-package
1868 "texlive-hyphen-indonesian" "id"
1869 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex")
1870 (base32
1871 "0mf0hr9c952kb2hmzid7fqg5whshwpribbyndb3ba092wh02abh5")))
1872 (synopsis "Indonesian hyphenation patterns")
1873 (description "This package provides hyphenation patterns for
1874 Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also
1875 usable for Malay (Bahasa Melayu).")
1876 (license license:gpl2)))
1877
1878 (define-public texlive-hyphen-interlingua
1879 (package
1880 (inherit (texlive-hyphen-package
1881 "texlive-hyphen-interlingua" "ia"
1882 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex")
1883 (base32
1884 "1aihgma3rix4jkc1z5k1lh6hlfrncn66yj0givd3j6xjqflafr2g")))
1885 (synopsis "Interlingua hyphenation patterns")
1886 (description "This package provides hyphenation patterns for Interlingua
1887 in ASCII encoding.")
1888 (license license:lppl1.3+)))
1889
1890 (define-public texlive-hyphen-irish
1891 (package
1892 (inherit (texlive-hyphen-package
1893 "texlive-hyphen-irish" "ga"
1894 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex")
1895 (base32
1896 "02k1fykgj3xamczjq16i9fsjjsh78pp5ypmh93p64izk2vymfwk0")))
1897 (synopsis "Irish hyphenation patterns")
1898 (description "This package provides hyphenation patterns for
1899 Irish (Gaeilge) in T1/EC and UTF-8 encodings.")
1900 ;; Either of these licenses
1901 (license (list license:gpl2+ license:expat))))
1902
1903 (define-public texlive-hyphen-italian
1904 (package
1905 (inherit (texlive-hyphen-package
1906 "texlive-hyphen-italian" "it"
1907 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex")
1908 (base32
1909 "1a65q3hjn2p212cgv6p7wa0wcn34qnxcz2pl3v3ip0xmb16qqsk5")))
1910 (synopsis "Italian hyphenation patterns")
1911 (description "This package provides hyphenation patterns for Italian in
1912 ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation
1913 issued by the Italian Standards Institution (Ente Nazionale di Unificazione
1914 UNI).")
1915 (license license:lppl1.3+)))
1916
1917 (define-public texlive-hyphen-kurmanji
1918 (package
1919 (inherit (texlive-hyphen-package
1920 "texlive-hyphen-kurmanji" "kmr"
1921 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex")
1922 (base32
1923 "1145ykfd0b0hgklindlxdgkqmsnj3cai3cwgllz411yqmrhjc6y9")))
1924 (synopsis "Kurmanji hyphenation patterns")
1925 (description "This package provides hyphenation patterns for
1926 Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in
1927 Europe, in T1/EC and UTF-8 encodings.")
1928 (license license:lppl1.3)))
1929
1930 (define-public texlive-hyphen-latin
1931 (package
1932 (inherit (texlive-hyphen-package
1933 "texlive-hyphen-latin" '("la-x-classic" "la-x-liturgic" "la")
1934 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex"
1935 "/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-liturgic.tex"
1936 "/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex")
1937 (base32
1938 "1d8d6b47r4r000gqgzyl0sy9is0y0dg41jp8fw4gqq8qmcgdxgsg")))
1939 (synopsis "Liturgical Latin hyphenation patterns")
1940 (description "This package provides hyphenation patterns for Latin in
1941 T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v
1942 when v is needed), medieval spelling with the ligatures @code{\\ae} and
1943 @code{\\oe} and the (uncial) lowercase 'v' written as a 'u' is also supported.
1944 Apparently there is no conflict between the patterns of modern Latin and those
1945 of medieval Latin. It also includes hyphenation patterns for the Classical
1946 Latin in T1/EC and UTF-8 encodings. Classical Latin hyphenation patterns are
1947 different from those of 'plain' Latin, the latter being more adapted to modern
1948 Latin. It also provides hyphenation patterns for the Liturgical Latin in
1949 T1/EC and UTF-8 encodings.")
1950 ;; Either of these licenses
1951 (license (list license:lppl1.0+ license:expat))))
1952
1953 (define-public texlive-hyphen-latvian
1954 (package
1955 (inherit (texlive-hyphen-package
1956 "texlive-hyphen-latvian" "lv"
1957 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex")
1958 (base32
1959 "1xbh5s6nwfjbv7g4kmcpjkm02a6s767p7jn9qjcnz5ip0ndl5g66")))
1960 (synopsis "Latvian hyphenation patterns")
1961 (description "This package provides hyphenation patterns for Latvian in
1962 L7X and UTF-8 encodings.")
1963 ;; Either of these licenses.
1964 (license (list license:gpl2 license:lgpl2.1))))
1965
1966 (define-public texlive-hyphen-lithuanian
1967 (package
1968 (inherit (texlive-hyphen-package
1969 "texlive-hyphen-lithuanian" "lt"
1970 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex")
1971 (base32
1972 "0v9spw0qkygkihj5app2immzqqr98w81pz460bcgvj1ah35jdfsl")))
1973 (synopsis "Lithuanian hyphenation patterns")
1974 (description "This package provides hyphenation patterns for Lithuanian in
1975 L7X and UTF-8 encodings.")
1976 ;; "Do ... whatever ... as long as you respect the copyright"; as part of
1977 ;; the hyph-utf8 package we choose the LPPL license.
1978 (license license:lppl)))
1979
1980 (define-public texlive-hyphen-mongolian
1981 (package
1982 (inherit (texlive-hyphen-package
1983 "texlive-hyphen-mongolian" '("mn-cyrl-x-lmc" "mn-cyrl")
1984 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex"
1985 "/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex")
1986 (base32
1987 "0lqq3jgwgnclb1cn3x99xmk90xra9q51b00ypwy5crssmy023hqc")))
1988 (synopsis "Mongolian hyphenation patterns in Cyrillic script")
1989 (description "This package provides hyphenation patterns for Mongolian in
1990 T2A, LMC and UTF-8 encodings.")
1991 ;; Either of these licenses
1992 (license (list license:lppl1.3+ license:expat))))
1993
1994 (define-public texlive-hyphen-norwegian
1995 (package
1996 (inherit (texlive-hyphen-package
1997 "texlive-hyphen-norwegian" '("nb" "nn" "no")
1998 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex"
1999 "/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex"
2000 "/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex")
2001 (base32
2002 "1fxnf671yz0p3lmdkspna7fjh96br1jy6yf7v17yh4fxwry3s4yz")))
2003 (synopsis "Norwegian Bokmal and Nynorsk hyphenation patterns")
2004 (description "This package provides hyphenation patterns for Norwegian
2005 Bokmal and Nynorsk in T1/EC and UTF-8 encodings.")
2006 (license (license:non-copyleft
2007 "/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex"
2008 "FSF All permissive license"))))
2009
2010 (define-public texlive-hyphen-occitan
2011 (package
2012 (inherit (texlive-hyphen-package
2013 "texlive-hyphen-occitan" "oc"
2014 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex")
2015 (base32
2016 "1y6j6ac9ncn79p7hnp6mdwdsw9ij14zyjby5iwdhpvzzn7yyc7p8")))
2017 (synopsis "Occitan hyphenation patterns")
2018 (description "This package provides hyphenation patterns for Occitan in
2019 T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan
2020 variants spoken and written in the wide area called 'Occitanie' by the French.
2021 It ranges from the Val d'Aran within Catalunya, to the South Western Italian
2022 Alps encompassing the southern half of the French pentagon.")
2023 (license license:lppl1.0+)))
2024
2025 (define-public texlive-hyphen-piedmontese
2026 (package
2027 (inherit (texlive-hyphen-package
2028 "texlive-hyphen-piedmontese" "pms"
2029 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex")
2030 (base32
2031 "00fqzymkg374r3dzf1y82k6b18bqrf688vnjv0vkvw5a45srlb5r")))
2032 (synopsis "Piedmontese hyphenation patterns")
2033 (description "This package provides hyphenation patterns for Piedmontese
2034 in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by
2035 Camillo Brero.")
2036 (license license:lppl1.3+)))
2037
2038 (define-public texlive-hyphen-polish
2039 (package
2040 (inherit (texlive-hyphen-package
2041 "texlive-hyphen-polish" "pl"
2042 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex")
2043 (base32
2044 "0dzq8ca96q7m5bslh51x8d30pdb86glh2gn3mmvq5ip813ckwh3s")))
2045 (synopsis "Polish hyphenation patterns")
2046 (description "This package provides hyphenation patterns for Polish in QX
2047 and UTF-8 encodings.")
2048 ;; No differing license declared, so we choose the project license.
2049 (license license:lppl)))
2050
2051 (define-public texlive-hyphen-portuguese
2052 (package
2053 (inherit (texlive-hyphen-package
2054 "texlive-hyphen-portuguese" "pt"
2055 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex")
2056 (base32
2057 "1waxrmm33fd2qfc4kiaiblg8kwzasrvgq4j3l14z733d0hlg4rfz")))
2058 (synopsis "Portuguese hyphenation patterns")
2059 (description "This package provides hyphenation patterns for Portuguese in
2060 T1/EC and UTF-8 encodings.")
2061 (license license:bsd-3)))
2062
2063 (define-public texlive-hyphen-romanian
2064 (package
2065 (inherit (texlive-hyphen-package
2066 "texlive-hyphen-romanian" "ro"
2067 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex")
2068 (base32
2069 "12i1vryl51yhdpj163ahfyiy21rjmf4gkqgslpriirdjmyrwrs65")))
2070 (synopsis "Romanian hyphenation patterns")
2071 (description "This package provides hyphenation patterns for Romanian in
2072 T1/EC and UTF-8 encodings.")
2073 ;; No differing license declared, so we choose the project license.
2074 (license license:lppl)))
2075
2076 (define-public texlive-hyphen-romansh
2077 (package
2078 (inherit (texlive-hyphen-package
2079 "texlive-hyphen-romansh" "rm"
2080 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex")
2081 (base32
2082 "06wan8i4appc1zfvc0q4cgnfv1nj0qgk02w3sg56zc11hf8sywl9")))
2083 (synopsis "Romansh hyphenation patterns")
2084 (description "This package provides hyphenation patterns for Romansh in
2085 ASCII encodings. They are supposed to comply with the rules indicated by the
2086 Lia Rumantscha (Romansh language society).")
2087 (license license:lppl1.3+)))
2088
2089 (define-public texlive-hyphen-russian
2090 (package
2091 (inherit (texlive-hyphen-package
2092 "texlive-hyphen-russian" "ru"
2093 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex")
2094 (base32
2095 "09s4vq23x4vff08ykmf08dvcdradjzzwvyys8p2wk6jxaqp980s3")))
2096 (synopsis "Russian hyphenation patterns")
2097 (description "This package provides hyphenation patterns for Russian in
2098 T2A and UTF-8 encodings.")
2099 (license license:lppl1.2+)))
2100
2101 (define-public texlive-hyphen-sanskrit
2102 (package
2103 (inherit (texlive-hyphen-package
2104 "texlive-hyphen-sanskrit" "sa"
2105 (list "/doc/generic/hyph-utf8/sa/hyphenmin.txt"
2106 "/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex")
2107 (base32
2108 "0grnn09l4i5yridx10yhm6dg9sbhgc2pmsp1p6hrcy7lzkqwdvs3")))
2109 (synopsis "Sanskrit hyphenation patterns")
2110 (description "This package provides hyphenation patterns for Sanskrit and
2111 Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,
2112 Malayalam longdesc and Telugu scripts for Unicode engines.")
2113 ;; "You may freely use, copy, modify and/or distribute this file."
2114 (license (license:non-copyleft
2115 "file:///tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex"))))
2116
2117 (define-public texlive-hyphen-serbian
2118 (package
2119 (inherit (texlive-hyphen-package
2120 "texlive-hyphen-serbian" '("sh-cyrl" "sh-latn" "sr-cyrl")
2121 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex"
2122 "/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex"
2123 "/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex")
2124 (base32
2125 "0fhdfydyaspb8dwirlf24vn7y9dzwmhsld0mmw0fz1lmcfaj252n")))
2126 (synopsis "Serbian hyphenation patterns")
2127 (description "This package provides hyphenation patterns for Serbian in
2128 T1/EC, T2A and UTF-8 encodings.")
2129 ;; Any version of the GPL.
2130 (license license:gpl3+)))
2131
2132 (define-public texlive-hyphen-slovak
2133 (package
2134 (inherit (texlive-hyphen-package
2135 "texlive-hyphen-slovak" "sk"
2136 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex")
2137 (base32
2138 "1cgw6fmyci3za3vsa49b6m74wqv582w0rpca7s9xva3hqm1m5qdg")))
2139 (synopsis "Slovak hyphenation patterns")
2140 (description "This package provides hyphenation patterns for Slovak in
2141 T1/EC and UTF-8 encodings.")
2142 (license license:gpl2+)))
2143
2144 (define-public texlive-hyphen-slovenian
2145 (package
2146 (inherit (texlive-hyphen-package
2147 "texlive-hyphen-slovenian" "sl"
2148 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex")
2149 (base32
2150 "1ixf2pxir9xf1gggq9k28xxglsq9bwqlghd9cl4amk5vrn5bjbds")))
2151 (synopsis "Slovenian hyphenation patterns")
2152 (description "This package provides hyphenation patterns for Slovenian in
2153 T1/EC and UTF-8 encodings.")
2154 ;; Either license
2155 (license (list license:lppl1.0+ license:expat))))
2156
2157 (define-public texlive-hyphen-spanish
2158 (package
2159 ;; The source files "eshyph-make.lua" and "eshyph.src" are provided to
2160 ;; generate obsolete hyphenation patterns, which aren't included in a
2161 ;; default TeX Live distribution, so we don't include them either.
2162 (inherit (texlive-hyphen-package
2163 "texlive-hyphen-spanish" "es"
2164 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex")
2165 (base32
2166 "0jgs0zzyk2wwrjbx2hqdh5qggrnik9xmsxygbfhlb7gdrcrs0mbj")))
2167 (synopsis "Hyphenation patterns for Spanish")
2168 (description "The package provides hyphenation patterns for Spanish in
2169 T1/EC and UTF-8 encodings.")
2170 (license license:expat)))
2171
2172 (define-public texlive-hyphen-swedish
2173 (package
2174 (inherit (texlive-hyphen-package
2175 "texlive-hyphen-swedish" "sv"
2176 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex")
2177 (base32
2178 "12sf9f43zwyzb4cn57yry8r4zmwdc7cfdljn3qwxwrny4m3sw4w8")))
2179 (synopsis "Swedish hyphenation patterns")
2180 (description "This package provides hyphenation patterns for Swedish in
2181 T1/EC and UTF-8 encodings.")
2182 (license license:lppl1.2+)))
2183
2184 (define-public texlive-hyphen-thai
2185 (package
2186 (inherit (texlive-hyphen-package
2187 "texlive-hyphen-thai" "th"
2188 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex")
2189 (base32
2190 "15k1n4xdw8zzd5nrh76s53z4j95gxa4i2h1av5gx5vrjgblzzl97")))
2191 (synopsis "Thai hyphenation patterns")
2192 (description "This package provides hyphenation patterns for Thai in LTH
2193 and UTF-8 encodings.")
2194 (license license:lppl1.3+)))
2195
2196 (define-public texlive-hyphen-turkish
2197 (let ((template (texlive-hyphen-package
2198 "texlive-hyphen-turkish" "tr"
2199 (list "/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb")
2200 (base32
2201 "0rvlhs2z2sn312lqsf44bzknid5dry7d2sl2q1whfvr0y4qj1g8f"))))
2202 (package
2203 (inherit template)
2204 (arguments
2205 (substitute-keyword-arguments (package-arguments template)
2206 ((#:phases phases)
2207 `(modify-phases ,phases
2208 (add-before 'build 'build-patterns
2209 (lambda _
2210 (let ((target (string-append (getcwd)
2211 "/tex/generic/hyph-utf8/patterns/tex")))
2212 (mkdir-p target)
2213 (with-directory-excursion "source/generic/hyph-utf8/languages/tr/"
2214 (substitute* "generate_patterns_tr.rb"
2215 (("\\$file = File.new.*")
2216 (string-append "$file = File.new(\"" target
2217 "/hyph-tr.tex\",\"w\")\n")))
2218 (invoke "ruby" "generate_patterns_tr.rb"))
2219 #t)))
2220 (add-after 'install 'install-hyph-tr.tex
2221 (lambda* (#:key inputs outputs #:allow-other-keys)
2222 (let* ((out (assoc-ref outputs "out"))
2223 (target (string-append out "/share/texmf-dist/tex")))
2224 (copy-recursively "tex" target)
2225 #t)))))))
2226 (synopsis "Hyphenation patterns for Turkish")
2227 (description "The package provides hyphenation patterns for Turkish in
2228 T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for
2229 the Ottoman Texts Project in 1987 and were suitable for both Modern Turkish
2230 and Ottoman Turkish in Latin script, however the required character set didn't
2231 fit into EC encoding, so support for Ottoman Turkish had to be dropped to keep
2232 compatibility with 8-bit engines.")
2233 (license license:lppl1.0+))))
2234
2235 (define-public texlive-hyphen-turkmen
2236 (let ((template (texlive-hyphen-package
2237 "texlive-hyphen-turkmen" "tk"
2238 (list "/source/generic/hyph-utf8/languages/tk/generate_patterns_tk.rb")
2239 (base32
2240 "1wlqx8wb0wsqhdv823brc3i8w1vf4m4bkb2vg917j5dq8p8p71aw"))))
2241 (package
2242 (inherit template)
2243 (arguments
2244 (substitute-keyword-arguments (package-arguments template)
2245 ((#:phases phases)
2246 `(modify-phases ,phases
2247 (add-before 'build 'build-patterns
2248 (lambda _
2249 (let ((target (string-append (getcwd)
2250 "/tex/generic/hyph-utf8/patterns/tex")))
2251 (mkdir-p target)
2252 (with-directory-excursion "source/generic/hyph-utf8/languages/tk/"
2253 (substitute* "generate_patterns_tk.rb"
2254 (("\\$file = File.new.*")
2255 (string-append "$file = File.new(\"" target
2256 "/hyph-tr.tex\",\"w\")\n")))
2257 (invoke "ruby" "generate_patterns_tk.rb"))
2258 #t)))
2259 (add-after 'install 'install-hyph-tk.tex
2260 (lambda* (#:key inputs outputs #:allow-other-keys)
2261 (let* ((out (assoc-ref outputs "out"))
2262 (target (string-append out "/share/texmf-dist/tex")))
2263 (copy-recursively "tex" target)
2264 #t)))))))
2265 (synopsis "Hyphenation patterns for Turkmen")
2266 (description "The package provides hyphenation patterns for Turkmen in
2267 T1/EC and UTF-8 encodings.")
2268 (license license:public-domain))))
2269
2270 (define-public texlive-hyphen-ukrainian
2271 (package
2272 (inherit (texlive-hyphen-package
2273 "texlive-hyphen-ukrainian" "uk"
2274 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex")
2275 (base32
2276 "17z0gmw5svsf5zlhjkckwk4y21g7prfwj473jlqnwcsr8a941gsf")))
2277 (synopsis "Ukrainian hyphenation patterns")
2278 (description "This package provides hyphenation patterns for Ukrainian in
2279 T2A and UTF-8 encodings.")
2280 ;; No version specified
2281 (license license:lppl)))
2282
2283 (define-public texlive-hyphen-uppersorbian
2284 (package
2285 (inherit (texlive-hyphen-package
2286 "texlive-hyphen-uppersorbian" "hsb"
2287 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex")
2288 (base32
2289 "1q42s32cfbynlnzn9hpcldi77fszi5xkn1c85l8xqjmfydqbqdyi")))
2290 (synopsis "Upper Sorbian hyphenation patterns")
2291 (description "This package provides hyphenation patterns for Upper Sorbian
2292 in T1/EC and UTF-8 encodings.")
2293 (license license:lppl1.3a+)))
2294
2295 (define-public texlive-hyphen-welsh
2296 (package
2297 (inherit (texlive-hyphen-package
2298 "texlive-hyphen-welsh" "cy"
2299 (list "/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex")
2300 (base32
2301 "0h8yjj5zdg0hvpb2vx9gi376536nl59hp8w286z1a13diaayg1m2")))
2302 (synopsis "Welsh hyphenation patterns")
2303 (description "This package provides hyphenation patterns for Welsh in
2304 T1/EC and UTF-8 encodings.")
2305 ;; Either license
2306 (license (list license:lppl1.0+ license:expat))))
2307
2308 (define-public texlive-hyph-utf8
2309 (package
2310 (inherit (simple-texlive-package
2311 "texlive-hyph-utf8"
2312 (list "/source/generic/hyph-utf8/"
2313 "/source/luatex/hyph-utf8/"
2314 "/doc/luatex/hyph-utf8/"
2315 "/tex/luatex/hyph-utf8/etex.src"
2316 ;; Used to extract luatex-hyphen.lua
2317 "/tex/latex/base/docstrip.tex"
2318
2319 ;; Documentation; we can't use the whole directory because
2320 ;; it includes files from other packages.
2321 "/doc/generic/hyph-utf8/CHANGES"
2322 "/doc/generic/hyph-utf8/HISTORY"
2323 "/doc/generic/hyph-utf8/hyph-utf8.pdf"
2324 "/doc/generic/hyph-utf8/hyph-utf8.tex"
2325 "/doc/generic/hyph-utf8/hyphenation-distribution.pdf"
2326 "/doc/generic/hyph-utf8/hyphenation-distribution.tex"
2327 "/doc/generic/hyph-utf8/img/miktex-languages.png"
2328 "/doc/generic/hyph-utf8/img/texlive-collection.png")
2329 (base32
2330 "10y8svgk68sivmgzrv8gv137r7kv49cs256cq2wja9ms437pxvbj")))
2331 (outputs '("out" "doc"))
2332 (build-system gnu-build-system)
2333 (arguments
2334 `(#:tests? #f ; there are none
2335 #:modules ((guix build gnu-build-system)
2336 (guix build utils)
2337 (ice-9 match))
2338 #:make-flags
2339 (list "-C" "source/luatex/hyph-utf8/"
2340 (string-append "DO_TEX = tex --interaction=nonstopmode '&tex' $<")
2341 (string-append "RUNDIR =" (assoc-ref %outputs "out") "/share/texmf-dist/tex/luatex/hyph-utf8/")
2342 (string-append "DOCDIR =" (assoc-ref %outputs "doc") "/share/texmf-dist/doc/luatex/hyph-utf8/")
2343 ;; hyphen.cfg is neither included nor generated, so let's only build the lua file.
2344 (string-append "UNPACKED = $(NAME).lua"))
2345 #:phases
2346 (modify-phases %standard-phases
2347 ;; TeX isn't usable at this point, so we first need to generate the
2348 ;; tex.fmt.
2349 (replace 'configure
2350 (lambda* (#:key inputs outputs #:allow-other-keys)
2351 ;; Target directories must exist.
2352 (mkdir-p (string-append (assoc-ref %outputs "out")
2353 "/share/texmf-dist/tex/luatex/hyph-utf8/"))
2354 (mkdir-p (string-append (assoc-ref %outputs "doc")
2355 "/share/texmf-dist/doc/luatex/hyph-utf8/"))
2356
2357 ;; We cannot build the documentation because that requires a
2358 ;; fully functional pdflatex, which depends on this package.
2359 (substitute* "source/luatex/hyph-utf8/Makefile"
2360 (("all: .*") "all: $(RUNFILES)\n"))
2361
2362 ;; Find required fonts for building tex.fmt
2363 (setenv "TFMFONTS"
2364 (string-append (assoc-ref inputs "texlive-fonts-cm")
2365 "/share/texmf-dist/fonts/tfm/public/cm:"
2366 (assoc-ref inputs "texlive-fonts-knuth-lib")
2367 "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
2368 ;; ...and find all tex files in this environment.
2369 (setenv "TEXINPUTS"
2370 (string-append
2371 (getcwd) ":"
2372 (string-join
2373 (map (match-lambda ((_ . dir) dir)) inputs)
2374 "//:")))
2375
2376 ;; Generate tex.fmt.
2377 (let ((where "source/luatex/hyph-utf8"))
2378 (mkdir-p where)
2379 (with-directory-excursion where
2380 (invoke "tex" "-ini"
2381 (string-append (assoc-ref inputs "texlive-tex-plain")
2382 "/share/texmf-dist/tex/plain/config/tex.ini"))))))
2383 (add-before 'build 'build-loaders-and-converters
2384 (lambda* (#:key outputs #:allow-other-keys)
2385 (let* ((root (string-append (assoc-ref outputs "out")
2386 "/share/texmf-dist"))
2387 (conv
2388 (string-append root
2389 "/tex/generic/hyph-utf8/conversions")))
2390
2391 ;; Build converters
2392 (mkdir-p conv)
2393 (with-directory-excursion "source/generic/hyph-utf8"
2394 (substitute* "generate-converters.rb"
2395 (("\\$path_root=File.*")
2396 (string-append "$path_root=\"" root "\"\n"))
2397 ;; Avoid error with newer Ruby.
2398 (("#1\\{%") "#1{%%"))
2399 (invoke "ruby" "generate-converters.rb"))
2400 #t)))
2401 (replace 'install
2402 (lambda* (#:key source outputs #:allow-other-keys)
2403 (let ((doc (assoc-ref outputs "doc"))
2404 (out (assoc-ref outputs "out")))
2405 (mkdir-p doc)
2406 (copy-recursively
2407 (string-append source "/doc")
2408 (string-append doc "/doc"))
2409 (install-file
2410 (string-append source "/tex/luatex/hyph-utf8/etex.src")
2411 (string-append out "/share/texmf-dist/tex/luatex/hyph-utf8/")))
2412 #t)))))
2413 (native-inputs
2414 `(("ruby" ,ruby)
2415 ("texlive-bin" ,texlive-bin)
2416 ;; The following packages are needed for build "tex.fmt", which we need
2417 ;; for a working "tex".
2418 ("texlive-tex-plain" ,texlive-tex-plain)
2419 ("texlive-fonts-cm" ,texlive-fonts-cm)
2420 ("texlive-fonts-knuth-lib" ,texlive-fonts-knuth-lib)
2421 ("texlive-hyphen-base" ,texlive-hyphen-base)))
2422 (home-page "https://ctan.org/pkg/hyph-utf8")
2423 (synopsis "Hyphenation patterns expressed in UTF-8")
2424 (description "Modern native UTF-8 engines such as XeTeX and LuaTeX need
2425 hyphenation patterns in UTF-8 format, whereas older systems require
2426 hyphenation patterns in the 8-bit encoding of the font in use (such encodings
2427 are codified in the LaTeX scheme with names like OT1, T2A, TS1, OML, LY1,
2428 etc). The present package offers a collection of conversions of existing
2429 patterns to UTF-8 format, together with converters for use with 8-bit fonts in
2430 older systems. Since hyphenation patterns for Knuthian-style TeX systems are
2431 only read at iniTeX time, it is hoped that the UTF-8 patterns, with their
2432 converters, will completely supplant the older patterns.")
2433 ;; Individual files each have their own license. Most of these files are
2434 ;; independent hyphenation patterns.
2435 (license (list license:lppl1.0+
2436 license:lppl1.2+
2437 license:lppl1.3
2438 license:lppl1.3+
2439 license:lppl1.3a+
2440 license:lgpl2.1
2441 license:lgpl2.1+
2442 license:lgpl3+
2443 license:gpl2+
2444 license:gpl3+
2445 license:mpl1.1
2446 license:asl2.0
2447 license:expat
2448 license:bsd-3
2449 license:cc0
2450 license:public-domain
2451 license:wtfpl2))))
2452
2453 (define-public texlive-generic-hyph-utf8
2454 (deprecated-package "texlive-generic-hyph-utf8" texlive-hyph-utf8))
2455
2456 (define-public texlive-dehyph-exptl
2457 (package
2458 (inherit (simple-texlive-package
2459 "texlive-dehyph-exptl"
2460 (list "/tex/generic/dehyph-exptl/"
2461 "/doc/generic/dehyph-exptl/")
2462 (base32
2463 "1w2danvvy2f52hcb4acvjks53kcanwxr9s990fap6mj279hpgmh2")
2464 #:trivial? #t))
2465 (propagated-inputs
2466 `(("texlive-hyphen-base" ,texlive-hyphen-base)
2467 ("texlive-hyph-utf8" ,texlive-hyph-utf8)))
2468 (home-page "http://projekte.dante.de/Trennmuster/WebHome")
2469 (synopsis "Hyphenation patterns for German")
2470 (description "The package provides experimental hyphenation patterns for
2471 the German language, covering both traditional and reformed orthography. The
2472 patterns can be used with packages Babel and hyphsubst from the Oberdiek
2473 bundle.")
2474 ;; Hyphenation patterns are under the Expat license; documentation is
2475 ;; under LPPL.
2476 (license (list license:expat license:lppl))))
2477
2478 (define-public texlive-generic-dehyph-exptl
2479 (deprecated-package "texlive-generic-dehyph-exptl" texlive-dehyph-exptl))
2480
2481 (define-public texlive-ukrhyph
2482 (package
2483 (inherit (simple-texlive-package
2484 "texlive-ukrhyph"
2485 (list "/doc/generic/ukrhyph/"
2486 "/tex/generic/ukrhyph/")
2487 (base32
2488 "01ma274sixcrbpb7fpqkxwfvrnzfj2srv9b4a42rfnph1pdql74z")
2489 #:trivial? #t))
2490 (home-page "https://www.ctan.org/pkg/ukrhyph")
2491 (synopsis "Hyphenation patterns for Ukrainian")
2492 (description "The package provides a range of hyphenation patterns for
2493 Ukrainian, depending on the encoding of the output font including the standard
2494 T2A.")
2495 (license license:lppl)))
2496
2497 (define-public texlive-ruhyphen
2498 (let ((template (simple-texlive-package
2499 "texlive-ruhyphen"
2500 (list "/source/generic/ruhyphen/"
2501 "/tex/generic/ruhyphen/")
2502 (base32
2503 "18n1bqhh8jv765vz3a3fjwffy7m71vhwx9yq8zl0p5j7p72q9qcn")
2504 #:trivial? #t)))
2505 (package
2506 (inherit template)
2507 (arguments
2508 (substitute-keyword-arguments (package-arguments template)
2509 ((#:phases phases)
2510 `(modify-phases ,phases
2511 (replace 'build
2512 (lambda _
2513 (let ((cwd (getcwd)))
2514 ;; Remove generated files.
2515 (for-each delete-file
2516 (find-files "tex/generic/ruhyphen/"
2517 "^cyry.*.tex$"))
2518 (substitute* "source/generic/ruhyphen/Makefile"
2519 (("./mkcyryo") (string-append cwd "/source/generic/ruhyphen/mkcyryo")))
2520 (with-directory-excursion "tex/generic/ruhyphen"
2521 (invoke "make" "-f"
2522 (string-append cwd "/source/generic/ruhyphen/Makefile"))))))))))
2523 (native-inputs
2524 `(("coreutils" ,coreutils)
2525 ("gawk" ,gawk)
2526 ("sed" ,sed)
2527 ("grep" ,grep)
2528 ("perl" ,perl)))
2529 (home-page "https://www.ctan.org/pkg/ruhyphen")
2530 (synopsis "Hyphenation patterns for Russian")
2531 (description "The package provides a collection of Russian hyphenation
2532 patterns supporting a number of Cyrillic font encodings, including T2,
2533 UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.")
2534 (license license:lppl))))
2535
2536 (define-public texlive-latexconfig
2537 (package
2538 (inherit (simple-texlive-package
2539 "texlive-latexconfig"
2540 (list "/tex/latex/latexconfig/")
2541 (base32
2542 "1wa7yhdpnz1nyidwgli68fyr33jn951bnniqrih5lj98k09rqc3h")
2543 #:trivial? #t))
2544 (home-page "https://www.tug.org/")
2545 (synopsis "Configuration files for LaTeX-related formats")
2546 (description "The package provides configuration files for LaTeX-related
2547 formats.")
2548 (license license:lppl)))
2549
2550 (define-public texlive-latex-base
2551 (let ((texlive-dir
2552 (lambda (dir hash)
2553 (origin
2554 (method svn-fetch)
2555 (uri (svn-reference
2556 (url (string-append "svn://www.tug.org/texlive/tags/"
2557 %texlive-tag "/Master/texmf-dist/"
2558 dir))
2559 (revision %texlive-revision)))
2560 (file-name (string-append "texlive-generic-"
2561 (last (string-split
2562 (string-drop-right dir 1) #\/))
2563 "-" (number->string %texlive-revision)
2564 "-checkout"))
2565 (sha256 (base32 hash))))))
2566 (package
2567 (name "texlive-latex-base")
2568 (version (number->string %texlive-revision))
2569 (source (origin
2570 (method svn-fetch)
2571 (uri (texlive-ref "latex" "base"))
2572 (file-name (string-append name "-" version "-checkout"))
2573 (sha256
2574 (base32
2575 "17bqrzzjz16k52sc7ydl4vw7ddy2z3g0p1xsk2c35h1ynq9h3wwm"))))
2576 (build-system gnu-build-system)
2577 (arguments
2578 `(#:modules ((guix build gnu-build-system)
2579 (guix build utils)
2580 (ice-9 match)
2581 (srfi srfi-1)
2582 (srfi srfi-26))
2583 #:tests? #f ; no tests
2584 #:phases
2585 (modify-phases %standard-phases
2586 (delete 'configure)
2587 (replace 'build
2588 (lambda* (#:key inputs #:allow-other-keys)
2589 ;; Find required fonts
2590 (setenv "TFMFONTS"
2591 (string-append (assoc-ref inputs "texlive-fonts-cm")
2592 "/share/texmf-dist/fonts/tfm/public/cm:"
2593 (assoc-ref inputs "texlive-fonts-latex")
2594 "/share/texmf-dist/fonts/tfm/public/latex-fonts:"
2595 (assoc-ref inputs "texlive-fonts-knuth-lib")
2596 "/share/texmf-dist/fonts/tfm/public/knuth-lib"))
2597 (setenv "TEXINPUTS"
2598 (string-append
2599 (getcwd) ":"
2600 (getcwd) "/build:"
2601 (string-join
2602 (map (match-lambda ((_ . dir) dir)) inputs)
2603 "//:")))
2604
2605 ;; Create an empty texsys.cfg, because latex.ltx wants to include
2606 ;; it. This file must exist and it's fine if it's empty.
2607 (with-output-to-file "texsys.cfg"
2608 (lambda _ (format #t "%")))
2609
2610 (mkdir "build")
2611 (mkdir "web2c")
2612 (invoke "luatex" "-ini" "-interaction=batchmode"
2613 "-output-directory=build" "unpack.ins")
2614 (invoke "tex" "-ini" "-interaction=batchmode"
2615 "-output-directory=web2c" "tex.ini")
2616 ;; LaTeX, pdfetex/pdftex, and XeTeX require e-TeX, which
2617 ;; is enabled only in extended mode (activated with a
2618 ;; leading asterisk). We should not use luatex here,
2619 ;; because that would make the generated format files
2620 ;; incompatible with any other TeX engine.
2621 (for-each (lambda (format)
2622 (invoke "latex" "-ini" "-interaction=batchmode"
2623 "-output-directory=web2c"
2624 "-translate-file=cp227.tcx"
2625 (string-append "*" format ".ini")))
2626 '("latex"
2627 "pdflatex"
2628 "pdfetex"))
2629 (for-each (lambda (format)
2630 (invoke format "-ini" "-interaction=batchmode"
2631 "-output-directory=web2c"
2632 (string-append "*" format ".ini")))
2633 '("xetex"
2634 "xelatex"))
2635 (for-each (lambda (format)
2636 (invoke "luatex" "-ini" "-interaction=batchmode"
2637 "-output-directory=web2c"
2638 (string-append format ".ini")))
2639 '("dviluatex" "dvilualatex" "luatex" "lualatex"))
2640 #t))
2641 (replace 'install
2642 (lambda* (#:key inputs outputs #:allow-other-keys)
2643 (let* ((out (assoc-ref outputs "out"))
2644 (target (string-append
2645 out "/share/texmf-dist/tex/latex/base"))
2646 (web2c (string-append
2647 out "/share/texmf-dist/web2c"))
2648 (support-files (assoc-ref inputs "texlive-latex-base-support-files")))
2649 (mkdir-p target)
2650 (mkdir-p web2c)
2651 (for-each delete-file (find-files "." "\\.(log|aux)$"))
2652 (for-each (cut install-file <> target)
2653 (find-files "build" ".*"))
2654 (for-each (cut install-file <> web2c)
2655 (find-files "web2c" ".*"))
2656 ;; pdftex is really just the same as pdfetex, but since it
2657 ;; doesn't have its own format file, we need to copy it.
2658 (copy-file "web2c/pdfetex.fmt"
2659 (string-append web2c "/pdftex.fmt"))
2660 ;; "source" is missing the support files as per doc/latex/base/manifest.txt.
2661 ;; FIXME: We are probably not packaging this right.
2662 (for-each (lambda (file)
2663 (install-file
2664 (string-append support-files "/" file)
2665 target))
2666 '("ltxguide.cls" "ltnews.cls" "minimal.cls" "idx.tex"
2667 "lablst.tex" "testpage.tex" "ltxcheck.tex"))
2668 ;; Install configurations
2669 (copy-recursively
2670 (assoc-ref inputs "texlive-latex-latexconfig")
2671 (string-append out "/share/texmf-dist/tex/latex/latexconfig"))
2672 (copy-recursively
2673 (assoc-ref inputs "texlive-generic-config")
2674 (string-append out "/share/texmf-dist/tex/generic/config"))
2675 (copy-recursively
2676 (assoc-ref inputs "texlive-generic-hyphen")
2677 (string-append out "/share/texmf-dist/tex/generic/hyphen"))
2678 (copy-recursively
2679 (assoc-ref inputs "texlive-generic-ruhyphen")
2680 (string-append out "/share/texmf-dist/tex/generic/ruhyphen"))
2681 (copy-recursively
2682 (assoc-ref inputs "texlive-generic-ukrhyph")
2683 (string-append out "/share/texmf-dist/tex/generic/ukrhyph"))
2684 #t))))))
2685 (native-inputs
2686 `(("texlive-bin" ,texlive-bin)
2687 ("texlive-generic-unicode-data" ,texlive-generic-unicode-data)
2688 ("texlive-generic-dehyph-exptl" ,texlive-generic-dehyph-exptl)
2689 ("texlive-generic-tex-ini-files" ,texlive-generic-tex-ini-files)
2690 ("texlive-latex-latexconfig"
2691 ,(texlive-dir "tex/latex/latexconfig/"
2692 "1zb3j49cj8p75yph6c8iysjp7qbdvghwf0mn9j0l7qq3qkbz2xaf"))
2693 ("texlive-generic-hyphen"
2694 ,(texlive-dir "tex/generic/hyphen/"
2695 "0xim36wybw2625yd0zwlp9m2c2xrcybw58gl4rih9nkph0wqwwhd"))
2696 ("texlive-generic-ruhyphen"
2697 ,(texlive-dir "tex/generic/ruhyphen/"
2698 "14rjkpl4zkjqs13rcf9kcd24mn2kx7i1jbdwxq8ds94bi66ylzsd"))
2699 ("texlive-generic-ukrhyph"
2700 ,(texlive-dir "tex/generic/ukrhyph/"
2701 "1cfwdg2rhbayl3w0x1xqd36d45zbc96f029myp13s7cb6kbmbppv"))
2702 ("texlive-generic-config"
2703 ,(texlive-dir "tex/generic/config/"
2704 "1v90iihy112q93zdpblpdk8zv8rf99fgslsg06s1sxm27zjm9nap"))
2705 ("texlive-latex-base-support-files"
2706 ,(origin
2707 (method svn-fetch)
2708 (uri (svn-reference
2709 (url (string-append "svn://www.tug.org/texlive/tags/"
2710 %texlive-tag "/Master/texmf-dist/"
2711 "/tex/latex/base"))
2712 (revision %texlive-revision)))
2713 (file-name (string-append name "-" version "-checkout"))
2714 (sha256
2715 (base32
2716 "18wy8dlcw8adl6jzqwbg54pdwlhs8hilnfvqbw6ikj6y3zhqkj7q"))))
2717 ("texlive-tex-plain" ,texlive-tex-plain)
2718 ("texlive-fonts-cm" ,texlive-fonts-cm)
2719 ("texlive-fonts-latex" ,texlive-fonts-latex)
2720 ("texlive-fonts-knuth-lib" ,texlive-fonts-knuth-lib)))
2721 (propagated-inputs
2722 `(("texlive-generic-hyph-utf8" ,texlive-generic-hyph-utf8)))
2723 (home-page "https://www.ctan.org/pkg/latex-base")
2724 (synopsis "Base sources of LaTeX")
2725 (description
2726 "This bundle comprises the source of LaTeX itself, together with several
2727 packages which are considered \"part of the kernel\". This bundle, together
2728 with the required packages, constitutes what every LaTeX distribution should
2729 contain.")
2730 (license license:lppl1.3c+))))
2731
2732 (define-public texlive-latex-filecontents
2733 (package
2734 (name "texlive-latex-filecontents")
2735 (version (number->string %texlive-revision))
2736 (source (origin
2737 (method svn-fetch)
2738 (uri (texlive-ref "latex" "filecontents"))
2739 (file-name (string-append name "-" version "-checkout"))
2740 (sha256
2741 (base32
2742 "0swkbxv8vg0yizadfnvrwjb4cj0pn34v9wm6v7wqq903fdav7k7q"))))
2743 (build-system texlive-build-system)
2744 (arguments '(#:tex-directory "latex/filecontents"))
2745 (home-page "https://www.ctan.org/pkg/filecontents")
2746 (synopsis "Extended filecontents and filecontents* environments")
2747 (description
2748 "LaTeX2e's @code{filecontents} and @code{filecontents*} environments
2749 enable a LaTeX source file to generate external files as it runs through
2750 LaTeX. However, there are two limitations of these environments: they refuse
2751 to overwrite existing files, and they can only be used in the preamble of a
2752 document. The filecontents package removes these limitations, letting you
2753 overwrite existing files and letting you use @code{filecontents} /
2754 @code{filecontents*} anywhere.")
2755 (license license:lppl1.3c+)))
2756
2757 (define-public texlive-generic-ifxetex
2758 (package
2759 (name "texlive-generic-ifxetex")
2760 (version (number->string %texlive-revision))
2761 (source (origin
2762 (method svn-fetch)
2763 (uri (texlive-ref "generic" "ifxetex"))
2764 (file-name (string-append name "-" version "-checkout"))
2765 (sha256
2766 (base32
2767 "0w2xj7n0szavj329kds09q626szkc378p3w0sk022q0ln4ksz86d"))))
2768 (build-system texlive-build-system)
2769 (arguments
2770 '(#:tex-directory "generic/ifxetex"
2771 #:tex-format "xelatex"))
2772 (inputs
2773 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
2774 (home-page "https://www.ctan.org/pkg/ifxetex")
2775 (synopsis "Am I running under XeTeX?")
2776 (description
2777 "This is a simple package which provides an @code{\\ifxetex} conditional,
2778 so that other code can determine that it is running under XeTeX. The package
2779 requires the e-TeX extensions to the TeX primitive set.")
2780 (license license:lppl1.3c+)))
2781
2782 (define-public texlive-epsf
2783 (package
2784 (inherit (simple-texlive-package
2785 "texlive-epsf"
2786 (list "/doc/generic/epsf/"
2787 "/tex/generic/epsf/")
2788 (base32
2789 "03jcf0kqh47is965d2590miwj7d5kif3c4mgsnvkyl664jzjkh92")
2790 #:trivial? #t))
2791 (home-page "https://www.ctan.org/pkg/epsf")
2792 (synopsis "Simple macros for EPS inclusion")
2793 (description
2794 "This package provides the original (and now obsolescent) graphics
2795 inclusion macros for use with dvips, still widely used by Plain TeX users (in
2796 particular). For LaTeX users, the package is nowadays (rather strongly)
2797 deprecated in favour of the more sophisticated standard LaTeX latex-graphics
2798 bundle of packages. (The latex-graphics bundle is also available to Plain TeX
2799 users, via its Plain TeX version.)")
2800 (license license:public-domain)))
2801
2802 (define-public texlive-generic-epsf
2803 (deprecated-package "texlive-generic-epsf" texlive-epsf))
2804
2805 (define-public texlive-latex-fancyvrb
2806 (package
2807 (name "texlive-latex-fancyvrb")
2808 (version (number->string %texlive-revision))
2809 (source (origin
2810 (method svn-fetch)
2811 (uri (texlive-ref "latex" "fancyvrb"))
2812 (file-name (string-append name "-" version "-checkout"))
2813 (sha256
2814 (base32
2815 "03l7140y031rr14h02i4z9zqsfvrbn7wzwxbjsrjcgrk6sdr71wv"))))
2816 (build-system texlive-build-system)
2817 (arguments
2818 '(#:tex-directory "latex/fancyvrb"
2819 #:tex-format "latex"))
2820 (home-page "https://www.ctan.org/pkg/fancyvrb")
2821 (synopsis "Sophisticated verbatim text")
2822 (description
2823 "This package provides tools for the flexible handling of verbatim text
2824 including: verbatim commands in footnotes; a variety of verbatim environments
2825 with many parameters; ability to define new customized verbatim environments;
2826 save and restore verbatim text and environments; write and read files in
2827 verbatim mode; build \"example\" environments (showing both result and
2828 verbatim source).")
2829 (license license:lppl1.0+)))
2830
2831 (define-public texlive-graphics-def
2832 (package
2833 (inherit (simple-texlive-package
2834 "texlive-graphics-def"
2835 (list "/doc/latex/graphics-def/README.md"
2836 "/tex/latex/graphics-def/")
2837 (base32
2838 "0zrbn9cwfnnrrl3b2zsd74ldksp9jwpvjh7z93ild1m75crpb39a")
2839 #:trivial? #t))
2840 (home-page "https://www.ctan.org/pkg/latex-graphics")
2841 (synopsis "Color and graphics option files")
2842 (description
2843 "This bundle is a combined distribution consisting of @file{dvips.def},
2844 @file{pdftex.def}, @file{luatex.def}, @file{xetex.def}, @file{dvipdfmx.def},
2845 and @file{dvisvgm.def} driver option files for the LaTeX graphics and color
2846 packages.")
2847 (license license:lppl1.3c+)))
2848
2849 (define-public texlive-graphics-cfg
2850 (package
2851 (inherit (simple-texlive-package
2852 "texlive-graphics-cfg"
2853 (list "/doc/latex/graphics-cfg/README.md"
2854 "/tex/latex/graphics-cfg/")
2855 (base32
2856 "00n63adb2laf43lzix39xl68aq0k5k80mmrw602w99w5n7f96gsf")
2857 #:trivial? #t))
2858 (home-page "https://www.ctan.org/pkg/latex-graphics")
2859 (synopsis "Sample configuration files for LaTeX color and graphics")
2860 (description
2861 "This bundle includes @file{color.cfg} and @file{graphics.cfg} files that
2862 set default \"driver\" options for the color and graphics packages.")
2863 (license license:public-domain)))
2864
2865 (define-public texlive-latex-graphics
2866 (package
2867 (name "texlive-latex-graphics")
2868 (version (number->string %texlive-revision))
2869 (source (origin
2870 (method svn-fetch)
2871 (uri (texlive-ref "latex" "graphics"))
2872 (file-name (string-append name "-" version "-checkout"))
2873 (sha256
2874 (base32
2875 "0nlfhn55ax89rcvpkrl9570671b62kcr4c9l5ch3w5zw9vmi00dz"))))
2876 (build-system texlive-build-system)
2877 (arguments '(#:tex-directory "latex/graphics"))
2878 (propagated-inputs
2879 `(("texlive-graphics-cfg" ,texlive-graphics-cfg)
2880 ("texlive-graphics-def" ,texlive-graphics-def)))
2881 (home-page "https://www.ctan.org/pkg/latex-graphics")
2882 (synopsis "LaTeX standard graphics bundle")
2883 (description
2884 "This is a collection of LaTeX packages for producing color, including
2885 graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX
2886 documents. It comprises the packages color, graphics, graphicx, trig, epsfig,
2887 keyval, and lscape.")
2888 (license license:lppl1.3c+)))
2889
2890 (define-public texlive-latex-xcolor
2891 (package
2892 (name "texlive-latex-xcolor")
2893 (version (number->string %texlive-revision))
2894 (source (origin
2895 (method svn-fetch)
2896 (uri (texlive-ref "latex" "xcolor"))
2897 (file-name (string-append name "-" version "-checkout"))
2898 (sha256
2899 (base32
2900 "01n613s7bcrd2n4jfawm0k4nn2ny3aaifp2jjfif3lz4sbv31494"))))
2901 (build-system texlive-build-system)
2902 (arguments '(#:tex-directory "latex/xcolor"))
2903 (home-page "https://www.ctan.org/pkg/xcolor")
2904 (synopsis "Driver-independent color extensions for LaTeX and pdfLaTeX")
2905 (description
2906 "The package starts from the basic facilities of the colorcolor package,
2907 and provides easy driver-independent access to several kinds of color tints,
2908 shades, tones, and mixes of arbitrary colors. It allows a user to select a
2909 document-wide target color model and offers complete tools for conversion
2910 between eight color models. Additionally, there is a command for alternating
2911 row colors plus repeated non-aligned material (like horizontal lines) in
2912 tables.")
2913 (license license:lppl1.2+)))
2914
2915 (define-public texlive-latex-hyperref
2916 (package
2917 (name "texlive-latex-hyperref")
2918 (version "6.84a2")
2919 ;; The sources in the TeX Live SVN repository do not contain hluatex.dtx,
2920 ;; so we fetch the release from GitHub.
2921 (source (origin
2922 (method url-fetch)
2923 (uri (string-append "https://github.com/ho-tex/hyperref/"
2924 "archive/release-" version ".tar.gz"))
2925 (file-name (string-append name "-" version ".tar.gz"))
2926 (sha256
2927 (base32
2928 "1d3rmjgzh0025a1dza55zb6nzzlgd1y9snwx45wq1c1vf42m79h2"))))
2929 (build-system texlive-build-system)
2930 (arguments '(#:tex-directory "latex/hyperref"))
2931 (propagated-inputs
2932 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek) ; for ltxcmds.sty
2933 ("texlive-latex-url" ,texlive-latex-url)))
2934 (home-page "https://www.ctan.org/pkg/hyperref")
2935 (synopsis "Extensive support for hypertext in LaTeX")
2936 (description
2937 "The @code{hyperref} package is used to handle cross-referencing commands
2938 in LaTeX to produce hypertext links in the document. The package provides
2939 backends for the @code{\\special} set defined for HyperTeX DVI processors; for
2940 embedded @code{pdfmark} commands for processing by Acrobat
2941 Distiller (@code{dvips} and Y&Y's @code{dvipsone}); for Y&Y's @code{dviwindo};
2942 for PDF control within pdfTeX and @code{dvipdfm}; for TeX4ht; and for VTeX's
2943 pdf and HTML backends. The package is distributed with the @code{backref} and
2944 @code{nameref} packages, which make use of the facilities of @code{hyperref}.")
2945 (license license:lppl1.3+)))
2946
2947 (define-public texlive-latex-oberdiek
2948 (package
2949 (name "texlive-latex-oberdiek")
2950 (version (number->string %texlive-revision))
2951 (source (origin
2952 (method svn-fetch)
2953 (uri (texlive-ref "latex" "oberdiek"))
2954 (file-name (string-append name "-" version "-checkout"))
2955 (sha256
2956 (base32
2957 "1m9fg8ddhpsl1212igr9a9fmj012lv780aghjn6fpidg2wqrffmn"))))
2958 (build-system texlive-build-system)
2959 (arguments
2960 '(#:tex-directory "latex/oberdiek"
2961 #:build-targets '("oberdiek.ins")
2962 #:phases
2963 (modify-phases %standard-phases
2964 ;; "ifpdf.ins" is not generated, so we need to process the dtx file.
2965 (add-after 'unpack 'do-not-process-ifpdf.ins
2966 (lambda _
2967 (substitute* "oberdiek.ins"
2968 (("ifpdf.ins") "ifpdf.dtx"))
2969 #t)))))
2970 (propagated-inputs
2971 `(("texlive-generic-ifxetex" ,texlive-generic-ifxetex)))
2972 (home-page "https://www.ctan.org/pkg/oberdiek")
2973 (synopsis "Bundle of packages submitted by Heiko Oberdiek")
2974 (description
2975 "The bundle comprises various LaTeX packages, providing among others:
2976 better accessibility support for PDF files; extensible chemists reaction
2977 arrows; record information about document class(es) used; and many more.")
2978 (license license:lppl1.3+)))
2979
2980 (define-public texlive-latex-tools
2981 (package
2982 (name "texlive-latex-tools")
2983 (version (number->string %texlive-revision))
2984 (source (origin
2985 (method svn-fetch)
2986 (uri (texlive-ref "latex" "tools"))
2987 (file-name (string-append name "-" version "-checkout"))
2988 (sha256
2989 (base32
2990 "0vj7h1fgf1396h4qjdc2m07y08i54gbbfrxl8y327cn3r1n093s6"))))
2991 (build-system texlive-build-system)
2992 (arguments
2993 '(#:tex-directory "latex/tools"
2994 #:build-targets '("tools.ins")))
2995 (home-page "https://www.ctan.org/pkg/latex-tools")
2996 (synopsis "LaTeX standard tools bundle")
2997 (description
2998 "This package is a collection of (variously) simple tools provided as
2999 part of the LaTeX required tools distribution, comprising the following
3000 packages: afterpage, array, bm, calc, dcolumn, delarray, enumerate, fileerr,
3001 fontsmpl, ftnright, hhline, indentfirst, layout, longtable, multicol,
3002 rawfonts, showkeys, somedefs, tabularx, theorem, trace, varioref, verbatim,
3003 xr, and xspace.")
3004 (license license:lppl1.3+)))
3005
3006 (define-public texlive-url
3007 (package
3008 (inherit (simple-texlive-package
3009 "texlive-url"
3010 (list "/doc/latex/url/"
3011 "/tex/latex/url/")
3012 (base32
3013 "184m40wgnx939ky2hbxnj0v9aak023ldrhgffp0lgyk9wdqpxlqg")
3014 #:trivial? #t))
3015 (home-page "https://www.ctan.org/pkg/url")
3016 (synopsis "Verbatim with URL-sensitive line breaks")
3017 (description "The command @code{\\url} is a form of verbatim command that
3018 allows linebreaks at certain characters or combinations of characters, accepts
3019 reconfiguration, and can usually be used in the argument to another command.
3020 The command is intended for email addresses, hypertext links,
3021 directories/paths, etc., which normally have no spaces, so by default the
3022 package ignores spaces in its argument. However, a package option allows
3023 spaces, which is useful for operating systems where spaces are a common part
3024 of file names.")
3025 ;; The license header states that it is under LPPL version 2 or later, but
3026 ;; the latest version is 1.3c.
3027 (license license:lppl1.3c+)))
3028
3029 (define-public texlive-latex-url
3030 (deprecated-package "texlive-latex-url" texlive-url))
3031
3032 (define-public texlive-latex-l3kernel
3033 (package
3034 (name "texlive-latex-l3kernel")
3035 (version (number->string %texlive-revision))
3036 (source (origin
3037 (method svn-fetch)
3038 (uri (texlive-ref "latex" "l3kernel"))
3039 (file-name (string-append name "-" version "-checkout"))
3040 (sha256
3041 (base32
3042 "0p3fsxap1ilwjz356aq4s5ygwvdscis8bh93g8klf8mhrd8cr2jy"))))
3043 (build-system texlive-build-system)
3044 (arguments
3045 '(#:tex-directory "latex/l3kernel"))
3046 (home-page "https://www.ctan.org/pkg/l3kernel")
3047 (synopsis "LaTeX3 programmers’ interface")
3048 (description
3049 "The l3kernel bundle provides an implementation of the LaTeX3
3050 programmers’ interface, as a set of packages that run under LaTeX 2e. The
3051 interface provides the foundation on which the LaTeX3 kernel and other future
3052 code are built: it is an API for TeX programmers. The packages are set up so
3053 that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
3054 (license license:lppl1.3c+)))
3055
3056 (define-public texlive-latex-l3packages
3057 (package
3058 (name "texlive-latex-l3packages")
3059 (version (number->string %texlive-revision))
3060 (source (origin
3061 (method svn-fetch)
3062 (uri (texlive-ref "latex" "l3packages"))
3063 (file-name (string-append name "-" version "-checkout"))
3064 (sha256
3065 (base32
3066 "0pyx0hffiyss363vv7fkrcdiaf7p099xnq0mngzqc7v8v9q849hs"))))
3067 (build-system texlive-build-system)
3068 (arguments
3069 '(#:tex-directory "latex/l3packages"
3070 ;; build-targets must be specified manually since they are in
3071 ;; sub-directories.
3072 #:build-targets '("l3keys2e.ins" "xparse.ins" "xfrac.ins" "xfp.ins" "xtemplate.ins")
3073 #:phases
3074 (modify-phases %standard-phases
3075 ;; All package sources are in sub-directories, so we need to add them
3076 ;; to TEXINPUTS.
3077 (add-after 'unpack 'set-TEXINPUTS
3078 (lambda _
3079 (let ((cwd (getcwd)))
3080 (setenv "TEXINPUTS"
3081 (string-append cwd "/l3keys2e:"
3082 cwd "/xparse:"
3083 cwd "/xfrac:"
3084 cwd "/xfp:"
3085 cwd "/xtemplate"
3086 ;; The terminating ":" is required to include the
3087 ;; l3kernel input as well.
3088 ":")))
3089 #t)))
3090 ))
3091 (propagated-inputs
3092 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
3093 (home-page "https://www.ctan.org/pkg/l3packages")
3094 (synopsis "High-level LaTeX3 concepts")
3095 (description
3096 "This bundle holds prototype implementations of concepts for a LaTeX
3097 designer interface, to be used with the experimental LaTeX kernel as
3098 programming tools and kernel sup­port. Packages provided in this release are:
3099
3100 @enumerate
3101 @item l3keys2e, which makes the facilities of the kernel module l3keys
3102 available for use by LaTeX 2e packages;
3103 @item xfrac, which provides flexible splitlevel fractions;
3104 @item xparse, which provides a high-level interface for declaring document
3105 commands; and
3106 @item xtemplate, which provides a means of defining generic functions using a
3107 key-value syntax.
3108 @end enumerate\n")
3109 (license license:lppl1.3c+)))
3110
3111 (define-public texlive-latex-fontspec
3112 (package
3113 (name "texlive-latex-fontspec")
3114 (version (number->string %texlive-revision))
3115 (source (origin
3116 (method svn-fetch)
3117 (uri (texlive-ref "latex" "fontspec"))
3118 (file-name (string-append name "-" version "-checkout"))
3119 (sha256
3120 (base32
3121 "1p0mkn6iywl0k4m9cx3hnhylpi499inisff3f72pcf349baqsnvq"))))
3122 (build-system texlive-build-system)
3123 (arguments
3124 '(#:tex-directory "latex/fontspec"
3125 #:phases
3126 (modify-phases %standard-phases
3127 (add-after 'install 'install-default-fontspec.cfg
3128 (lambda* (#:key outputs #:allow-other-keys)
3129 (with-output-to-file
3130 (string-append (assoc-ref outputs "out")
3131 "/share/texmf-dist/tex/latex/fontspec/fontspec.cfg")
3132 (lambda _
3133 (display "\
3134 %%% FONTSPEC.CFG %%%
3135 %
3136 % This configuration file sets up TeX Ligatures by default for all fonts loaded
3137 % with `\\setmainfont` and `\\setsansfont`.
3138 %
3139 % In addition, `\\setmonofont` has default features to enforce \"monospace\"
3140 % settings with regard to space stretchability and shrinkability.
3141
3142 \\defaultfontfeatures
3143 [\\rmfamily,\\sffamily]
3144 {Ligatures=TeX}
3145
3146 \\defaultfontfeatures
3147 [\\ttfamily]
3148 {WordSpace={1,0,0},
3149 HyphenChar=None,
3150 PunctuationSpace=WordSpace}
3151 ")))
3152 #t)))))
3153 (propagated-inputs
3154 `(("texlive-latex-l3packages" ,texlive-latex-l3packages)))
3155 (home-page "https://www.ctan.org/pkg/fontspec")
3156 (synopsis "Advanced font selection in XeLaTeX and LuaLaTeX")
3157 (description
3158 "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
3159 automatic and unified interface to feature-rich AAT and OpenType fonts through
3160 the NFSS in LaTeX running on XeTeX or LuaTeX engines. The package requires
3161 the l3kernel and xparse bundles from the LaTeX 3 development team.")
3162 (license license:lppl1.3+)))
3163
3164 ;; The SVN directory contains little more than a dtx file that generates three
3165 ;; of the many lua files that should be installed as part of this package.
3166 ;; This is why we take the release from GitHub instead.
3167 (define-public texlive-luatex-lualibs
3168 (package
3169 (name "texlive-luatex-lualibs")
3170 (version "2.5")
3171 (source (origin
3172 (method url-fetch)
3173 (uri (string-append "https://github.com/lualatex/lualibs/"
3174 "releases/download/v"
3175 version "/lualibs.zip"))
3176 (file-name (string-append name "-" version ".zip"))
3177 (sha256
3178 (base32
3179 "1xx9blvrmx9hyhrl345lpai9m6xxnw997261a1ahn1bm5r2j5fqy"))))
3180 (build-system gnu-build-system)
3181 (arguments
3182 `(#:make-flags
3183 (list (string-append "DESTDIR="
3184 (assoc-ref %outputs "out")
3185 "/share/texmf-dist"))
3186 #:phases
3187 (modify-phases %standard-phases
3188 (delete 'configure))))
3189 (native-inputs
3190 `(("texlive-bin" ,texlive-bin)
3191 ("unzip" ,unzip)
3192 ("zip" ,zip)))
3193 (home-page "https://github.com/lualatex/lualibs")
3194 (synopsis "Lua modules for general programming (in the (La)TeX world)")
3195 (description
3196 "Lualibs is a collection of Lua modules useful for general programming.
3197 The bundle is based on Lua modules shipped with ConTeXt, and made available in
3198 this bundle for use independent of ConTeXt.")
3199 ;; GPL version 2 only
3200 (license license:gpl2)))
3201
3202 (define-public texlive-luatex-luaotfload
3203 (package
3204 (name "texlive-luatex-luaotfload")
3205 (version "2.8-fix-2")
3206 ;; The release tarball does not contain all source files.
3207 (source (origin
3208 (method git-fetch)
3209 (uri (git-reference
3210 (url "https://github.com/lualatex/luaotfload.git")
3211 (commit (string-append "v" version))))
3212 (file-name (git-file-name name version))
3213 (sha256
3214 (base32
3215 "0l5l7iq3dxcxl65qaghcpjg27yd9iw1sxa8pnd7xlvlm09dhfdnf"))))
3216 (build-system gnu-build-system)
3217 (arguments
3218 `(#:make-flags
3219 (list (string-append "DESTDIR="
3220 (assoc-ref %outputs "out")
3221 "/share/texmf-dist")
3222 "all")
3223 #:parallel-build? #f ; not supported
3224 #:phases
3225 (modify-phases %standard-phases
3226 (replace 'configure
3227 (lambda* (#:key inputs #:allow-other-keys)
3228 (substitute* "doc/Makefile"
3229 (("rst2man") "rst2man.py")
3230 ;; Don't build the PDF. This requires more of LaTeX.
3231 (("\\$\\(DOCPDF\\)") ""))
3232
3233 (substitute* "Makefile"
3234 ;; We don't build the PDF, so don't attempt to install it.
3235 (("cp \\$\\(RESOURCES\\) \\$\\(DOCPDF\\)")
3236 "cp $(RESOURCES)")
3237 (("= \\$\\(DOCPDF\\)") "= ")
3238 ;; Fix name of fontloader file
3239 (("^LOADER.*= \\$\\(BUILDDIR\\)/fontloader-\\$\\(shell date \\+%F\\).lua")
3240 "LOADER = $(BUILDDIR)/fontloader.lua"))
3241
3242 (mkdir "build")
3243
3244 ;; Don't download this file.
3245 (copy-file (assoc-ref inputs "glyphlist")
3246 "build/glyphlist.txt")
3247
3248 ;; Don't use git
3249 (let ((notes
3250 `((committer . "Philipp Gesang <phg@phi-gamma.net>")
3251 (description . ,version)
3252 (loader . "fontloader.lua")
3253 (revision . "ad480924393fffa2896156e1a32c22f5c61120dd")
3254 (timestamp . "2019-01-01 00:00:00 +0000"))))
3255 (substitute* "scripts/mkstatus"
3256 (("local notes.*=.*")
3257 (string-append "local notes = {"
3258 (string-join
3259 (map (lambda (entry)
3260 (format "[\"~a\"]=\"~a\","
3261 (symbol->string (car entry))
3262 (cdr entry)))
3263 notes))
3264 "}"))))
3265 #t)))))
3266 (native-inputs
3267 `(("zip" ,zip)
3268 ("unzip" ,unzip)
3269 ("graphviz" ,graphviz)
3270 ("lualatex" ,(texlive-union (list texlive-luatex-lualibs
3271 texlive-context-base)))
3272 ("python-docutils" ,python-docutils)
3273 ("glyphlist"
3274 ,(origin
3275 (method url-fetch)
3276 (uri (string-append "https://raw.githubusercontent.com/adobe-type-tools/"
3277 "agl-aglfn/b2a04cb906f9257cc06a2fe0ad4b3d663bc02136/"
3278 "glyphlist.txt"))
3279 (sha256
3280 (base32 "1s6svfw23rqzdvflv8frgd4xrwvrmsj8szwzqgcd39dp9rpjafjp"))))))
3281 (propagated-inputs
3282 `(("texlive-luatex-lualibs" ,texlive-luatex-lualibs)))
3283 (home-page "https://github.com/lualatex/luaotfload")
3284 (synopsis "OpenType font loader for LuaTeX")
3285 (description
3286 "Luaotfload is an adaptation of the ConTeXt font loading system for the
3287 Plain and LaTeX formats. It allows OpenType fonts to be loaded with font
3288 features accessible using an extended font request syntax while providing
3289 compatibilitywith XeTeX. By indexing metadata in a database it facilitates
3290 loading fonts by their proper names instead of file names.")
3291 ;; GPL version 2 only
3292 (license license:gpl2)))
3293
3294 (define-public texlive-latex-amsmath
3295 (package
3296 (name "texlive-latex-amsmath")
3297 (version (number->string %texlive-revision))
3298 (source (origin
3299 (method svn-fetch)
3300 (uri (texlive-ref "latex" "amsmath"))
3301 (file-name (string-append name "-" version "-checkout"))
3302 (sha256
3303 (base32
3304 "0arvk7gn32mshnfdad5qkgf3i1arxq77k3vq7wnpm4nwnrzclxal"))))
3305 (build-system texlive-build-system)
3306 (arguments '(#:tex-directory "latex/amsmath"))
3307 (home-page "https://www.ctan.org/pkg/amsmath")
3308 (synopsis "AMS mathematical facilities for LaTeX")
3309 (description
3310 "This is the principal package in the AMS-LaTeX distribution. It adapts
3311 for use in LaTeX most of the mathematical features found in AMS-TeX; it is
3312 highly recommended as an adjunct to serious mathematical typesetting in LaTeX.
3313 When amsmath is loaded, AMS-LaTeX packages @code{amsbsyamsbsy} (for bold
3314 symbols), @code{amsopnamsopn} (for operator names) and
3315 @code{amstextamstext} (for text embedded in mathematics) are also loaded.
3316 This package is part of the LaTeX required distribution; however, several
3317 contributed packages add still further to its appeal; examples are
3318 @code{empheqempheq}, which provides functions for decorating and highlighting
3319 mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar)
3320 definitions.")
3321 (license license:lppl1.3c+)))
3322
3323 (define-public texlive-latex-amscls
3324 (package
3325 (name "texlive-latex-amscls")
3326 (version (number->string %texlive-revision))
3327 (source (origin
3328 (method svn-fetch)
3329 (uri (texlive-ref "latex" "amscls"))
3330 (file-name (string-append name "-" version "-checkout"))
3331 (sha256
3332 (base32
3333 "0c2j9xh4qpi0x1vvcxdjxq6say0zhyr569fryi5cmhp8bclh4kca"))))
3334 (build-system texlive-build-system)
3335 (arguments
3336 `(#:tex-directory "latex/amscls"))
3337 (home-page "https://www.ctan.org/pkg/amscls")
3338 (synopsis "AMS document classes for LaTeX")
3339 (description
3340 "This bundle contains three AMS classes: @code{amsartamsart} (for writing
3341 articles for the AMS), @code{amsbookamsbook} (for books) and
3342 @code{amsprocamsproc} (for proceedings), together with some supporting
3343 material. The material is made available as part of the AMS-LaTeX
3344 distribution.")
3345 (license license:lppl1.3c+)))
3346
3347 (define-public texlive-latex-babel
3348 (package
3349 (name "texlive-latex-babel")
3350 (version (number->string %texlive-revision))
3351 (source (origin
3352 (method svn-fetch)
3353 (uri (texlive-ref "latex" "babel"))
3354 (file-name (string-append name "-" version "-checkout"))
3355 (sha256
3356 (base32
3357 "0yhlfiz3fjc8jd46f1zrjj4jig48l8rrzh8cmd8ammml8z9a01z6"))))
3358 (build-system texlive-build-system)
3359 (arguments
3360 '(#:tex-directory "generic/babel"
3361 #:phases
3362 (modify-phases %standard-phases
3363 ;; This package tries to produce babel.aux twice but refuses to
3364 ;; overwrite the first one.
3365 (add-before 'build 'fix-ins
3366 (lambda _
3367 (substitute* "babel.ins"
3368 (("askonceonly") "askforoverwritefalse"))
3369 #t)))))
3370 (home-page "https://www.ctan.org/pkg/babel")
3371 (synopsis "Multilingual support for Plain TeX or LaTeX")
3372 (description
3373 "The package manages culturally-determined typographical (and other)
3374 rules, and hyphenation patterns for a wide range of languages. A document may
3375 select a single language to be supported, or it may select several, in which
3376 case the document may switch from one language to another in a variety of
3377 ways. Babel uses contributed configuration files that provide the detail of
3378 what has to be done for each language. Users of XeTeX are advised to use the
3379 polyglossia package rather than Babel.")
3380 (license license:lppl1.3+)))
3381
3382 (define-public texlive-generic-babel-english
3383 (package
3384 (name "texlive-generic-babel-english")
3385 (version (number->string %texlive-revision))
3386 (source (origin
3387 (method svn-fetch)
3388 (uri (texlive-ref "generic" "babel-english"))
3389 (file-name (string-append name "-" version "-checkout"))
3390 (sha256
3391 (base32
3392 "1s404wbx91z5w65hm024kyl4h56zsa096irx18vsx8jvlmwsr5wc"))))
3393 (build-system texlive-build-system)
3394 (arguments '(#:tex-directory "generic/babel-english"))
3395 (home-page "https://www.ctan.org/pkg/babel-english")
3396 (synopsis "Babel support for English")
3397 (description
3398 "This package provides the language definition file for support of
3399 English in @code{babel}. Care is taken to select British hyphenation patterns
3400 for British English and Australian text, and default (\"american\") patterns
3401 for Canadian and USA text.")
3402 (license license:lppl1.3+)))
3403
3404 (define-public texlive-generic-babel-german
3405 (package
3406 (name "texlive-generic-babel-german")
3407 (version (number->string %texlive-revision))
3408 (source (origin
3409 (method svn-fetch)
3410 (uri (texlive-ref "generic" "babel-german"))
3411 (file-name (string-append name "-" version "-checkout"))
3412 (sha256
3413 (base32
3414 "0h47s67gnhdaxfgbf8pirp5vw4z6rrhxl8zav803yjxka0096i3y"))))
3415 (build-system texlive-build-system)
3416 (arguments '(#:tex-directory "generic/babel-german"))
3417 (home-page "https://www.ctan.org/pkg/babel-german")
3418 (synopsis "Babel support for German")
3419 (description
3420 "This package provides the language definition file for support of German
3421 in @code{babel}. It provides all the necessary macros, definitions and
3422 settings to typeset German documents. The bundle includes support for the
3423 traditional and reformed German orthography as well as for the Austrian and
3424 Swiss varieties of German.")
3425 (license license:lppl1.3+)))
3426
3427 (define-public texlive-latex-cyrillic
3428 (package
3429 (name "texlive-latex-cyrillic")
3430 (version (number->string %texlive-revision))
3431 (source (origin
3432 (method svn-fetch)
3433 (uri (texlive-ref "latex" "cyrillic"))
3434 (file-name (string-append name "-" version "-checkout"))
3435 (sha256
3436 (base32
3437 "083xbwg7hrnlv47fkwvz8yjb830bhxx7y0mq7z7nz2f96y2ldr6b"))))
3438 (build-system texlive-build-system)
3439 (arguments
3440 '(#:tex-directory "latex/cyrillic"))
3441 (home-page "https://www.ctan.org/pkg/latex-cyrillic")
3442 (synopsis "Support for Cyrillic fonts in LaTeX")
3443 (description
3444 "This bundle of macros files provides macro support (including font
3445 encoding macros) for the use of Cyrillic characters in fonts encoded under the
3446 T2* and X2 encodings. These encodings cover (between them) pretty much every
3447 language that is written in a Cyrillic alphabet.")
3448 (license license:lppl1.3c+)))
3449
3450 (define-public texlive-latex-psnfss
3451 (package
3452 (name "texlive-latex-psnfss")
3453 (version (number->string %texlive-revision))
3454 (source (origin
3455 (method svn-fetch)
3456 (uri (texlive-ref "latex" "psnfss"))
3457 (file-name (string-append name "-" version "-checkout"))
3458 (sha256
3459 (base32
3460 "1920dcq8613yzprasbg80fh4fcjcidvvl54wkx438nimyxcri7qz"))))
3461 (build-system texlive-build-system)
3462 (arguments '(#:tex-directory "latex/psnfss"))
3463 (home-page "https://www.ctan.org/pkg/psnfss")
3464 (synopsis "Font support for common PostScript fonts")
3465 (description
3466 "The PSNFSS collection includes a set of files that provide a complete
3467 working setup of the LaTeX font selection scheme (NFSS2) for use with common
3468 PostScript fonts. It covers the so-called \"Base\" fonts (which are built
3469 into any Level 2 PostScript printing device and the Ghostscript interpreter)
3470 and a number of free fonts. It provides font definition files, macros and
3471 font metrics. The bundle as a whole is part of the LaTeX required set of
3472 packages.")
3473 (license license:lppl1.2+)))
3474
3475 ;; For user profiles
3476 (define-public texlive-base
3477 (let ((default-packages
3478 (list texlive-bin
3479 texlive-dvips
3480 texlive-fontname
3481 texlive-fonts-cm
3482 texlive-fonts-latex
3483 texlive-metafont-base
3484 texlive-latex-base
3485 ;; LaTeX packages from the "required" set.
3486 texlive-latex-amsmath
3487 texlive-latex-amscls
3488 texlive-latex-babel
3489 texlive-generic-babel-english
3490 texlive-latex-cyrillic
3491 texlive-latex-graphics
3492 texlive-latex-psnfss
3493 texlive-latex-tools)))
3494 (package
3495 (name "texlive-base")
3496 (version (number->string %texlive-revision))
3497 (source #f)
3498 (build-system trivial-build-system)
3499 (arguments
3500 '(#:builder
3501 (begin (mkdir (assoc-ref %outputs "out")))))
3502 (propagated-inputs
3503 (map (lambda (package)
3504 (list (package-name package) package))
3505 default-packages))
3506 (home-page (package-home-page texlive-bin))
3507 (synopsis "TeX Live base packages")
3508 (description "This is a very limited subset of the TeX Live distribution.
3509 It includes little more than the required set of LaTeX packages.")
3510 (license (fold (lambda (package result)
3511 (match (package-license package)
3512 ((lst ...)
3513 (append lst result))
3514 ((? license:license? license)
3515 (cons license result))))
3516 '()
3517 default-packages)))))
3518
3519 ;; For use in package definitions only
3520 (define-public texlive-union
3521 (lambda* (#:optional (packages '()))
3522 "Return 'texlive-union' package which is a union of PACKAGES and the
3523 standard LaTeX packages."
3524 (let ((default-packages (match (package-propagated-inputs texlive-base)
3525 (((labels packages) ...) packages))))
3526 (package (inherit texlive-base)
3527 (name "texlive-union")
3528 (build-system trivial-build-system)
3529 (arguments
3530 '(#:modules ((guix build union)
3531 (guix build utils)
3532 (guix build texlive-build-system)
3533 (guix build gnu-build-system)
3534 (guix build gremlin)
3535 (guix elf))
3536 #:builder
3537 (begin
3538 (use-modules (ice-9 match)
3539 (ice-9 popen)
3540 (srfi srfi-26)
3541 (guix build union)
3542 (guix build utils)
3543 (guix build texlive-build-system))
3544 (let* ((out (assoc-ref %outputs "out"))
3545 (texmf.cnf (string-append out "/share/texmf-dist/web2c/texmf.cnf")))
3546 ;; Build a modifiable union of all inputs (but exclude bash and
3547 ;; the updmap.cfg file)
3548 (match (filter (match-lambda
3549 ((name . _)
3550 (not (member name '("bash" "updmap.cfg")))))
3551 %build-inputs)
3552 (((names . directories) ...)
3553 (union-build (assoc-ref %outputs "out")
3554 directories
3555 #:create-all-directories? #t
3556 #:log-port (%make-void-port "w"))))
3557
3558 ;; The configuration file "texmf.cnf" is provided by the
3559 ;; "texlive-bin" package. We take it and override only the
3560 ;; setting for TEXMFROOT and TEXMF. This file won't be consulted
3561 ;; by default, though, so we still need to set TEXMFCNF.
3562 (substitute* texmf.cnf
3563 (("^TEXMFROOT = .*")
3564 (string-append "TEXMFROOT = " out "/share\n"))
3565 (("^TEXMF = .*")
3566 "TEXMF = $TEXMFROOT/share/texmf-dist\n"))
3567 (setenv "PATH" (string-append
3568 (assoc-ref %build-inputs "bash") "/bin:"
3569 (assoc-ref %build-inputs "coreutils") "/bin:"
3570 (string-append out "/bin")))
3571 (for-each
3572 (cut wrap-program <>
3573 `("TEXMFCNF" ":" suffix (,(dirname texmf.cnf)))
3574 `("TEXMF" ":" suffix (,(string-append out "/share/texmf-dist"))))
3575 (find-files (string-append out "/bin") ".*"))
3576
3577 ;; Remove invalid maps from config file.
3578 (let ((port (open-pipe* OPEN_WRITE "updmap-sys"
3579 "--syncwithtrees"
3580 "--nohash"
3581 (assoc-ref %build-inputs "updmap.cfg"))))
3582 (display "Y\n" port)
3583 (when (not (zero? (status:exit-val (close-pipe port))))
3584 (error "failed to filter updmap.cfg")))
3585 ;; Generate maps.
3586 (invoke "updmap-sys" "--force"
3587 (string-append out "/share/texmf-config/web2c/updmap.cfg"))
3588 #t))))
3589 (inputs
3590 `(("bash" ,bash)
3591 ,@(map (lambda (package)
3592 (list (package-name package) package))
3593 (append default-packages packages))))
3594 (native-inputs
3595 `(("coreutils" ,coreutils)
3596 ("sed" ,sed)
3597 ("updmap.cfg"
3598 ,(origin
3599 (method url-fetch)
3600 (uri (string-append "https://tug.org/svn/texlive/tags/"
3601 %texlive-tag "/Master/texmf-dist/web2c/updmap.cfg"
3602 "?revision=" (number->string %texlive-revision)))
3603 (file-name (string-append "updmap.cfg-"
3604 (number->string %texlive-revision)))
3605 (sha256
3606 (base32
3607 "06mwpy5i218g5k3sf4gba0fmxgas82hkzx9fhwn67z5ik37d8apq"))))))
3608 (home-page (package-home-page texlive-bin))
3609 (synopsis "Union of TeX Live packages")
3610 (description "This package provides a subset of the TeX Live
3611 distribution.")
3612 (license (fold (lambda (package result)
3613 (match (package-license package)
3614 ((lst ...)
3615 (append lst result))
3616 ((? license:license? license)
3617 (cons license result))))
3618 '()
3619 (append default-packages packages)))))))
3620
3621 ;; For use in package definitions only
3622 (define-public texlive-tiny
3623 (package
3624 (inherit (texlive-union))
3625 (name "texlive-tiny")
3626 (description "This is a very limited subset of the TeX Live distribution.
3627 It includes little more than the required set of LaTeX packages.")))
3628
3629 (define-public texlive-latex-amsrefs
3630 (package
3631 (name "texlive-latex-amsrefs")
3632 (version (number->string %texlive-revision))
3633 (source (origin
3634 (method svn-fetch)
3635 (uri (texlive-ref "latex" "amsrefs"))
3636 (file-name (string-append name "-" version "-checkout"))
3637 (sha256
3638 (base32
3639 "15i4k479dwrpr0kspmm70g1yn4p3dkh0whyzmr93hph9bggnh1i1"))))
3640 (build-system texlive-build-system)
3641 (arguments '(#:tex-directory "latex/amsrefs"))
3642 (home-page "https://www.ctan.org/pkg/amsrefs")
3643 (synopsis "LaTeX-based replacement for BibTeX")
3644 (description
3645 "Amsrefs is a LaTeX package for bibliographies that provides an archival
3646 data format similar to the format of BibTeX database files, but adapted to
3647 make direct processing by LaTeX easier. The package can be used either in
3648 conjunction with BibTeX or as a replacement for BibTeX.")
3649 (license license:lppl1.3+)))
3650
3651 (define-public texlive-latex-bigfoot
3652 (package
3653 (name "texlive-latex-bigfoot")
3654 (version (number->string %texlive-revision))
3655 (source (origin
3656 (method svn-fetch)
3657 (uri (texlive-ref "latex" "bigfoot"))
3658 (file-name (string-append name "-" version "-checkout"))
3659 (sha256
3660 (base32
3661 "092g8alnsdwlgl1isdnqrr32l161994295kadr1n05d81xgj5wnv"))))
3662 (build-system texlive-build-system)
3663 (arguments
3664 '(#:tex-directory "latex/bigfoot"
3665 #:phases
3666 (modify-phases %standard-phases
3667 (add-after 'unpack 'remove-generated-file
3668 (lambda _
3669 (for-each delete-file (find-files "." "\\.drv$"))
3670 #t)))))
3671 (home-page "https://www.ctan.org/pkg/bigfoot")
3672 (synopsis "Footnotes for critical editions")
3673 (description
3674 "This package aims to provide a one-stop solution to requirements for
3675 footnotes. It offers: Multiple footnote apparatus superior to that of
3676 @code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
3677 into a single paragraph (this choice may be selected per footnote series);
3678 Things you might have expected (such as @code{\\verb}-like material in
3679 footnotes, and color selections over page breaks) now work. Note that the
3680 majority of the bigfoot package's interface is identical to that of
3681 @code{manyfoot}; users should seek information from that package's
3682 documentation. The bigfoot bundle also provides the @code{perpage} and
3683 @code{suffix} packages.")
3684 (license license:gpl2+)))
3685
3686 (define-public texlive-latex-blindtext
3687 (package
3688 (name "texlive-latex-blindtext")
3689 (version (number->string %texlive-revision))
3690 (source (origin
3691 (method svn-fetch)
3692 (uri (texlive-ref "latex" "blindtext"))
3693 (file-name (string-append name "-" version "-checkout"))
3694 (sha256
3695 (base32
3696 "1jrja9b1pzdh9zgv1jh807w4xijqja58n2mqny6dkwicv8qfgbfg"))))
3697 (build-system texlive-build-system)
3698 (arguments '(#:tex-directory "latex/blindtext"))
3699 (home-page "https://www.ctan.org/pkg/blindtext")
3700 (synopsis "Producing 'blind' text for testing")
3701 (description
3702 "The package provides the commands @code{\\blindtext} and
3703 @code{\\Blindtext} for creating \"blind\" text useful in testing new classes
3704 and packages, and @code{\\blinddocument}, @code{\\Blinddocument} for creating
3705 an entire random document with sections, lists, mathematics, etc. The package
3706 supports three languages, @code{english}, @code{(n)german} and @code{latin};
3707 the @code{latin} option provides a short \"lorem ipsum\" (for a fuller \"lorem
3708 ipsum\" text, see the @code{lipsum} package).")
3709 (license license:lppl)))
3710
3711 (define-public texlive-latex-dinbrief
3712 (package
3713 (name "texlive-latex-dinbrief")
3714 (version (number->string %texlive-revision))
3715 (source (origin
3716 (method svn-fetch)
3717 (uri (texlive-ref "latex" "dinbrief"))
3718 (file-name (string-append name "-" version "-checkout"))
3719 (sha256
3720 (base32
3721 "0lb0kiy8fxzl6cnhcw1sggy6jrjvcd6kj1kkw3k9lkimm388yjz6"))))
3722 (build-system texlive-build-system)
3723 (arguments
3724 '(#:tex-directory "latex/dinbrief"
3725 #:phases
3726 (modify-phases %standard-phases
3727 (add-after 'unpack 'remove-generated-file
3728 (lambda _
3729 (delete-file "dinbrief.drv")
3730 #t))
3731 (add-after 'unpack 'fix-encoding-error
3732 (lambda _
3733 (with-fluids ((%default-port-encoding "ISO-8859-1"))
3734 (substitute* "dinbrief.dtx"
3735 (("zur Verf.+ung. In der Pr\"aambel")
3736 "zur Verf\"ung. In der Pr\"aambel")))
3737 #t)))))
3738 (home-page "https://www.ctan.org/pkg/dinbrief")
3739 (synopsis "German letter DIN style")
3740 (description
3741 "This package implements a document layout for writing letters according
3742 to the rules of DIN (Deutsches Institut für Normung, German standardisation
3743 institute). A style file for LaTeX 2.09 (with limited support of the
3744 features) is part of the package. Since the letter layout is based on a
3745 German standard, the user guide is written in German, but most macros have
3746 English names from which the user can recognize what they are used for. In
3747 addition there are example files showing how letters may be created with the
3748 package.")
3749 (license license:lppl)))
3750
3751 (define-public texlive-latex-draftwatermark
3752 (package
3753 (name "texlive-latex-draftwatermark")
3754 (version (number->string %texlive-revision))
3755 (source (origin
3756 (method svn-fetch)
3757 (uri (texlive-ref "latex" "draftwatermark"))
3758 (file-name (string-append name "-" version "-checkout"))
3759 (sha256
3760 (base32
3761 "1zyl2pcz2x529gzj5m93a1s4ipymdabf7qdjl3l1673pizd4hfyv"))))
3762 (build-system texlive-build-system)
3763 (arguments '(#:tex-directory "latex/draftwatermark"))
3764 (home-page "https://www.ctan.org/pkg/draftwatermark")
3765 (synopsis "Put a grey textual watermark on document pages")
3766 (description
3767 "This package provides a means to add a textual, light grey watermark on
3768 every page or on the first page of a document. Typical usage may consist in
3769 writing words such as DRAFT or CONFIDENTIAL across document pages. The
3770 package performs a similar function to that of @code{draftcopy}, but its
3771 implementation is output device independent, and made very simple by relying
3772 on everypage.")
3773 (license license:lppl1.3+)))
3774
3775 (define-public texlive-latex-environ
3776 (package
3777 (name "texlive-latex-environ")
3778 (version (number->string %texlive-revision))
3779 (source (origin
3780 (method svn-fetch)
3781 (uri (texlive-ref "latex" "environ"))
3782 (file-name (string-append name "-" version "-checkout"))
3783 (sha256
3784 (base32
3785 "06h28b26dyjkj9shksphgqfv4130jfkwhbw737hxn7d3yvdfffyd"))))
3786 (build-system texlive-build-system)
3787 (arguments '(#:tex-directory "latex/environ"))
3788 (home-page "https://www.ctan.org/pkg/environ")
3789 (synopsis "New interface for environments in LaTeX")
3790 (description
3791 "This package provides the @code{\\collect@@body} command (as in
3792 @code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
3793 for collecting the body text of an environment. These commands are used to
3794 define a new author interface to creating new environments.")
3795 (license license:lppl)))
3796
3797 (define-public texlive-latex-eqparbox
3798 (package
3799 (name "texlive-latex-eqparbox")
3800 (version (number->string %texlive-revision))
3801 (source (origin
3802 (method svn-fetch)
3803 (uri (texlive-ref "latex" "eqparbox"))
3804 (file-name (string-append name "-" version "-checkout"))
3805 (sha256
3806 (base32
3807 "1ib5xdwcj5wk23wgk41m2hdcjr1dzrs4l3wwnpink9mlapz12wjs"))))
3808 (build-system texlive-build-system)
3809 (arguments '(#:tex-directory "latex/eqparbox"))
3810 (home-page "https://www.ctan.org/pkg/eqparbox")
3811 (synopsis "Create equal-widthed parboxes")
3812 (description
3813 "LaTeX users sometimes need to ensure that two or more blocks of text
3814 occupy the same amount of horizontal space on the page. To that end, the
3815 @code{eqparbox} package defines a new command, @code{\\eqparbox}, which works
3816 just like @code{\\parbox}, except that instead of specifying a width, one
3817 specifies a tag. All @code{eqparbox}es with the same tag---regardless of
3818 where they are in the document---will stretch to fit the widest
3819 @code{eqparbox} with that tag. This simple, equal-width mechanism can be used
3820 for a variety of alignment purposes, as is evidenced by the examples in
3821 @code{eqparbox}'s documentation. Various derivatives of @code{\\eqparbox} are
3822 also provided.")
3823 (license license:lppl1.3+)))
3824
3825 (define-public texlive-latex-expdlist
3826 (package
3827 (name "texlive-latex-expdlist")
3828 (version (number->string %texlive-revision))
3829 (source (origin
3830 (method svn-fetch)
3831 (uri (texlive-ref "latex" "expdlist"))
3832 (file-name (string-append name "-" version "-checkout"))
3833 (sha256
3834 (base32
3835 "1x7byk6x10njir3y9rm56glhdzrxwqag7gsnw2sqn1czlq525w7r"))))
3836 (build-system texlive-build-system)
3837 (arguments
3838 '(#:tex-directory "latex/expdlist"
3839 #:phases
3840 (modify-phases %standard-phases
3841 (add-after 'unpack 'remove-generated-file
3842 (lambda _
3843 (for-each delete-file
3844 (find-files "." "\\.drv$"))
3845 #t)))))
3846 (home-page "https://www.ctan.org/pkg/expdlist")
3847 (synopsis "Expanded description environments")
3848 (description
3849 "The package provides additional features for the LaTeX
3850 @code{description} environment, including adjustable left margin. The package
3851 also allows the user to \"break\" a list (for example, to interpose a comment)
3852 without affecting the structure of the list (this works for @code{itemize} and
3853 @code{enumerate} lists, and numbered lists remain in sequence).")
3854 (license license:lppl)))
3855
3856 (define-public texlive-filemod
3857 (package
3858 (inherit (simple-texlive-package
3859 "texlive-filemod"
3860 (list "/doc/latex/filemod/"
3861 "/tex/latex/filemod/"
3862 "/tex/generic/filemod/")
3863 (base32
3864 "1snsj7kblkj1ig3x3845lsypz7ab04lf0dcpdh946xakgjnz4fb5")
3865 #:trivial? #t))
3866 (home-page "https://www.ctan.org/pkg/filemod")
3867 (synopsis "Provide file modification times, and compare them")
3868 (description
3869 "This package provides macros to read and compare the modification dates
3870 of files. The files may be @code{.tex} files, images or other files (as long
3871 as they can be found by LaTeX). It uses the @code{\\pdffilemoddate} primitive
3872 of pdfLaTeX to find the file modification date as PDF date string, parses the
3873 string and returns the value to the user. The package will also work for DVI
3874 output with recent versions of the LaTeX compiler which uses pdfLaTeX in DVI
3875 mode. The functionality is provided by purely expandable macros or by faster
3876 but non-expandable ones.")
3877 (license license:lppl1.3+)))
3878
3879 (define-public texlive-latex-filemod
3880 (deprecated-package "texlive-latex-filemod" texlive-filemod))
3881
3882 (define-public texlive-latex-ifplatform
3883 (package
3884 (name "texlive-latex-ifplatform")
3885 (version (number->string %texlive-revision))
3886 (source (origin
3887 (method svn-fetch)
3888 (uri (texlive-ref "latex" "ifplatform"))
3889 (file-name (string-append name "-" version "-checkout"))
3890 (sha256
3891 (base32
3892 "157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
3893 (build-system texlive-build-system)
3894 (arguments '(#:tex-directory "latex/ifplatform"))
3895 (home-page "https://www.ctan.org/pkg/ifplatform")
3896 (synopsis "Conditionals to test which platform is being used")
3897 (description
3898 "This package uses the (La)TeX extension @code{-shell-escape} to
3899 establish whether the document is being processed on a Windows or on a
3900 Unix-like system, or on Cygwin (Unix environment over a Windows system).
3901 Booleans provided are: @code{\\ifwindows}, @code{\\iflinux}, @code{\\ifmacosx}
3902 and @code{\\ifcygwin}. The package also preserves the output of @code{uname}
3903 on a Unix-like system, which may be used to distinguish between various
3904 classes of systems.")
3905 (license license:lppl)))
3906
3907 (define-public texlive-latex-natbib
3908 (package
3909 (name "texlive-latex-natbib")
3910 (version (number->string %texlive-revision))
3911 (source (origin
3912 (method svn-fetch)
3913 (uri (texlive-ref "latex" "natbib"))
3914 (file-name (string-append name "-" version "-checkout"))
3915 (sha256
3916 (base32
3917 "0aqliq0nwblxyrzhwhv77pnmk7qh2y3prgq7z7qhwcbgz5kisld7"))))
3918 (build-system texlive-build-system)
3919 (arguments '(#:tex-directory "latex/natbib"))
3920 (home-page "https://www.ctan.org/pkg/natbib")
3921 (synopsis "Flexible bibliography support")
3922 (description
3923 "This bundle provides a package that implements both author-year and
3924 numbered references, as well as much detailed of support for other
3925 bibliography use. Also provided are versions of the standard BibTeX styles
3926 that are compatible with @code{natbib}: @code{plainnat}, @code{unsrtnat},
3927 @code{abbrnat}. The bibliography styles produced by @code{custom-bib} are
3928 designed from the start to be compatible with @code{natbib}.")
3929 (license license:lppl)))
3930
3931 (define-public texlive-latex-psfrag
3932 (package
3933 (name "texlive-latex-psfrag")
3934 (version (number->string %texlive-revision))
3935 (source (origin
3936 (method svn-fetch)
3937 (uri (texlive-ref "latex" "psfrag"))
3938 (file-name (string-append name "-" version "-checkout"))
3939 (sha256
3940 (base32
3941 "1dxbl5il7wbbsp0v45vk884xi1192wxw03849pb1g5q4x808n352"))))
3942 (build-system texlive-build-system)
3943 (arguments '(#:tex-directory "latex/psfrag"))
3944 (home-page "https://www.ctan.org/pkg/psfrag")
3945 (synopsis "Replace strings in encapsulated PostScript figures")
3946 (description
3947 "This package allows LaTeX constructions (equations, picture
3948 environments, etc.) to be precisely superimposed over Encapsulated PostScript
3949 figures, using your own favorite drawing tool to create an EPS figure and
3950 placing simple text \"tags\" where each replacement is to be placed, with
3951 PSfrag automatically removing these tags from the figure and replacing them
3952 with a user specified LaTeX construction, properly aligned, scaled, and/or
3953 rotated.")
3954 (license (license:fsf-free "file://psfrag.dtx"))))
3955
3956 (define-public texlive-latex-xkeyval
3957 (package
3958 (name "texlive-latex-xkeyval")
3959 (version (number->string %texlive-revision))
3960 (source (origin
3961 (method svn-fetch)
3962 (uri (texlive-ref "latex" "xkeyval"))
3963 (file-name (string-append name "-" version "-checkout"))
3964 (sha256
3965 (base32
3966 "0wancavix39j240pd8m9cgmwsijwx6jd6n54v8wg0x2rk5m44myp"))))
3967 (build-system texlive-build-system)
3968 (arguments '(#:tex-directory "latex/xkeyval"))
3969 (home-page "https://www.ctan.org/pkg/xkeyval")
3970 (synopsis "Macros for defining and setting keys")
3971 (description
3972 "This package is an extension of the @code{keyval} package and offers
3973 more flexible macros for defining and setting keys. The package provides a
3974 pointer and a preset system. Furthermore, it supplies macros to allow class
3975 and package options to contain options of the @code{key=value} form. A LaTeX
3976 kernel patch is provided to avoid premature expansions of macros in class or
3977 package options. A specialized system for setting @code{PSTricks} keys is
3978 provided by the @code{pst-xkey} package.")
3979 (license license:lppl1.3+)))
3980
3981 (define-public texlive-pstool
3982 (package
3983 (inherit (simple-texlive-package
3984 "texlive-pstool"
3985 (list "/doc/latex/pstool/"
3986 "/tex/latex/pstool/")
3987 (base32
3988 "12clzcw2cl7g2chr2phgmmiwxw4859cln1gbx1wgp8bl9iw590nc")
3989 #:trivial? #t))
3990 (propagated-inputs
3991 `(("texlive-latex-bigfoot" ,texlive-latex-bigfoot) ; for suffix
3992 ("texlive-latex-filemod" ,texlive-latex-filemod)
3993 ("texlive-latex-graphics" ,texlive-latex-graphics)
3994 ("texlive-latex-ifplatform" ,texlive-latex-ifplatform)
3995 ("texlive-latex-l3kernel" ,texlive-latex-l3kernel) ; for expl3
3996 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
3997 ("texlive-latex-psfrag" ,texlive-latex-psfrag)
3998 ("texlive-latex-tools" ,texlive-latex-tools) ; for shellesc
3999 ("texlive-latex-trimspaces" ,texlive-latex-trimspaces)
4000 ("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
4001 (home-page "https://www.ctan.org/pkg/pstool")
4002 (synopsis "Process PostScript graphics within pdfLaTeX documents")
4003 (description
4004 "This is a package for processing PostScript graphics with @code{psfrag}
4005 labels within pdfLaTeX documents. Every graphic is compiled individually,
4006 drastically speeding up compilation time when only a single figure needs
4007 re-processing.")
4008 (license license:lppl)))
4009
4010 (define-public texlive-latex-pstool
4011 (deprecated-package "texlive-latex-pstool" texlive-pstool))
4012
4013 (define-public texlive-seminar
4014 (package
4015 (inherit (simple-texlive-package
4016 "texlive-seminar"
4017 (list "/doc/latex/seminar/"
4018 "/tex/latex/seminar/")
4019 (base32
4020 "1clgw5xy867khzfn8d210rc5hsw5s7r0pznhk84niybvw4zc7r3f")
4021 #:trivial? #t))
4022 (home-page "https://www.ctan.org/pkg/seminar")
4023 (synopsis "Make overhead slides")
4024 ;; TODO: This package may need fancybox and xcomment at runtime.
4025 (description
4026 "This package provides a class that produces overhead
4027 slides (transparencies), with many facilities. Seminar is not nowadays
4028 reckoned a good basis for a presentation — users are advised to use more
4029 recent classes such as powerdot or beamer, both of which are tuned to
4030 21st-century presentation styles.")
4031 (license license:lppl1.2+)))
4032
4033 (define-public texlive-latex-seminar
4034 (deprecated-package "texlive-latex-seminar" texlive-seminar))
4035
4036 (define-public texlive-latex-trimspaces
4037 (package
4038 (name "texlive-latex-trimspaces")
4039 (version (number->string %texlive-revision))
4040 (source (origin
4041 (method svn-fetch)
4042 (uri (texlive-ref "latex" "trimspaces"))
4043 (file-name (string-append name "-" version "-checkout"))
4044 (sha256
4045 (base32
4046 "0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
4047 (build-system texlive-build-system)
4048 (arguments
4049 '(#:tex-directory "latex/trimspaces"
4050 #:tex-format "latex"
4051 #:phases
4052 (modify-phases %standard-phases
4053 (add-after 'unpack 'fix-bug
4054 (lambda _
4055 ;; The "ins" file refers to the wrong source file.
4056 (substitute* "trimspaces.ins"
4057 (("pstool.tex") "trimspaces.tex"))
4058 #t)))))
4059 (inputs
4060 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
4061 (home-page "https://www.ctan.org/pkg/trimspaces")
4062 (synopsis "Trim spaces around an argument or within a macro")
4063 (description
4064 "This very short package allows you to expandably remove spaces around a
4065 token list (commands are provided to remove spaces before, spaces after, or
4066 both); or to remove surrounding spaces within a macro definition, or to define
4067 space-stripped macros.")
4068 (license license:lppl)))
4069
4070 (define-public texlive-latex-capt-of
4071 (package
4072 (name "texlive-latex-capt-of")
4073 (version (number->string %texlive-revision))
4074 (source (origin
4075 (method svn-fetch)
4076 (uri (svn-reference
4077 (url (string-append "svn://www.tug.org/texlive/tags/"
4078 %texlive-tag "/Master/texmf-dist/"
4079 "/tex/latex/capt-of"))
4080 (revision %texlive-revision)))
4081 (file-name (string-append name "-" version "-checkout"))
4082 (sha256
4083 (base32
4084 "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x"))))
4085 (build-system trivial-build-system)
4086 (arguments
4087 `(#:modules ((guix build utils))
4088 #:builder
4089 (begin
4090 (use-modules (guix build utils))
4091 (let ((target (string-append (assoc-ref %outputs "out")
4092 "/share/texmf-dist/tex/latex/capt-of")))
4093 (mkdir-p target)
4094 (copy-recursively (assoc-ref %build-inputs "source") target)
4095 #t))))
4096 (home-page "https://www.ctan.org/pkg/capt-of")
4097 (synopsis "Captions on more than floats")
4098 (description
4099 "This package defines a command @code{\\captionof} for putting a caption
4100 to something that's not a float.")
4101 (license license:lppl)))
4102
4103 (define-public texlive-doi
4104 (package
4105 (inherit (simple-texlive-package
4106 "texlive-doi"
4107 (list "/doc/latex/doi/README"
4108 "/tex/latex/doi/")
4109 (base32
4110 "17lnnhfmb8g4nh4fnyc9616h8xg3vjrzmlvfmlfqwwlfpma9xnnw")
4111 #:trivial? #t))
4112 (home-page "https://www.ctan.org/pkg/doi")
4113 (synopsis "Create correct hyperlinks for DOI numbers")
4114 (description
4115 "You can hyperlink DOI numbers to doi.org. However, some publishers have
4116 elected to use nasty characters in their DOI numbering scheme (@code{<},
4117 @code{>}, @code{_} and @code{;} have all been spotted). This will either
4118 upset LaTeX, or your PDF reader. This package contains a single user-level
4119 command @code{\\doi{}}, which takes a DOI number, and creates a correct
4120 hyperlink to the target of the DOI.")
4121 ;; Any version of the LPPL.
4122 (license license:lppl1.3+)))
4123
4124 (define-public texlive-latex-doi
4125 (deprecated-package "texlive-latex-doi" texlive-doi))
4126
4127 (define-public texlive-etoolbox
4128 (package
4129 (inherit (simple-texlive-package
4130 "texlive-etoolbox"
4131 (list "/doc/latex/etoolbox/"
4132 "/tex/latex/etoolbox/")
4133 (base32
4134 "1qg4x5r4ibinl6zy5lq70lv4zcrjsn54n6hwv31k5kl7mwv0mvr3")
4135 #:trivial? #t))
4136 (home-page "https://www.ctan.org/pkg/etoolbox")
4137 (synopsis "e-TeX tools for LaTeX")
4138 (description
4139 "This package is a toolbox of programming facilities geared primarily
4140 towards LaTeX class and package authors. It provides LaTeX frontends to some
4141 of the new primitives provided by e-TeX as well as some generic tools which
4142 are not strictly related to e-TeX but match the profile of this package. The
4143 package provides functions that seem to offer alternative ways of implementing
4144 some LaTeX kernel commands; nevertheless, the package will not modify any part
4145 of the LaTeX kernel.")
4146 (license license:lppl1.3+)))
4147
4148 (define-public texlive-latex-etoolbox
4149 (deprecated-package "texlive-latex-etoolbox" texlive-etoolbox))
4150
4151 (define-public texlive-latex-fncychap
4152 (package
4153 (name "texlive-latex-fncychap")
4154 (version (number->string %texlive-revision))
4155 (source (origin
4156 (method svn-fetch)
4157 (uri (svn-reference
4158 (url (string-append "svn://www.tug.org/texlive/tags/"
4159 %texlive-tag "/Master/texmf-dist/"
4160 "/tex/latex/fncychap"))
4161 (revision %texlive-revision)))
4162 (file-name (string-append name "-" version "-checkout"))
4163 (sha256
4164 (base32
4165 "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
4166 (build-system trivial-build-system)
4167 (arguments
4168 `(#:modules ((guix build utils))
4169 #:builder
4170 (begin
4171 (use-modules (guix build utils))
4172 (let ((target (string-append (assoc-ref %outputs "out")
4173 "/share/texmf-dist/tex/latex/fncychap")))
4174 (mkdir-p target)
4175 (copy-recursively (assoc-ref %build-inputs "source") target)
4176 #t))))
4177 (home-page "https://www.ctan.org/pkg/fncychap")
4178 (synopsis "Seven predefined chapter heading styles")
4179 (description
4180 "This package provides seven predefined chapter heading styles. Each
4181 style can be modified using a set of simple commands. Optionally one can
4182 modify the formatting routines in order to create additional chapter
4183 headings.")
4184 (license license:lppl1.3+)))
4185
4186 (define-public texlive-latex-framed
4187 (package
4188 (name "texlive-latex-framed")
4189 (version (number->string %texlive-revision))
4190 (source (origin
4191 (method svn-fetch)
4192 (uri (svn-reference
4193 (url (string-append "svn://www.tug.org/texlive/tags/"
4194 %texlive-tag "/Master/texmf-dist/"
4195 "/tex/latex/framed"))
4196 (revision %texlive-revision)))
4197 (file-name (string-append name "-" version "-checkout"))
4198 (sha256
4199 (base32
4200 "14a4ydqsvp3vcfavl21jrv0ybiqypaaqzg2q2cs3rzkandg7w98x"))))
4201 (build-system trivial-build-system)
4202 (arguments
4203 `(#:modules ((guix build utils))
4204 #:builder
4205 (begin
4206 (use-modules (guix build utils))
4207 (let ((target (string-append (assoc-ref %outputs "out")
4208 "/share/texmf-dist/tex/latex/framed")))
4209 (mkdir-p target)
4210 (copy-recursively (assoc-ref %build-inputs "source") target)
4211 #t))))
4212 (home-page "https://www.ctan.org/pkg/framed")
4213 (synopsis "Framed or shaded regions that can break across pages")
4214 (description
4215 "The package creates three environments: @code{framed}, which puts an
4216 ordinary frame box around the region, @code{shaded}, which shades the region,
4217 and @code{leftbar}, which places a line at the left side. The environments
4218 allow a break at their start (the @code{\\FrameCommand} enables creation of a
4219 title that is “attached” to the environment); breaks are also allowed in the
4220 course of the framed/shaded matter. There is also a command
4221 @code{\\MakeFramed} to make your own framed-style environments.")
4222 ;; The header states: "These macros may be freely transmitted, reproduced,
4223 ;; or modified for any purpose provided that this notice is left intact."
4224 (license (license:fsf-free "file://framed.sty"))))
4225
4226 (define-public texlive-latex-g-brief
4227 (package
4228 (name "texlive-latex-g-brief")
4229 (version (number->string %texlive-revision))
4230 (source (origin
4231 (method svn-fetch)
4232 (uri (texlive-ref "latex" "g-brief"))
4233 (file-name (string-append name "-" version "-checkout"))
4234 (sha256
4235 (base32
4236 "0sikazkg0dpkcpzlbqw8qzxr81paf2f443vsrh14jnw7s4gswvc5"))))
4237 (build-system texlive-build-system)
4238 (arguments
4239 '(#:tex-directory "latex/g-brief"
4240 #:phases
4241 (modify-phases %standard-phases
4242 (add-after 'unpack 'remove-generated-file
4243 (lambda _
4244 (delete-file "g-brief.drv")
4245 #t)))))
4246 (home-page "https://www.ctan.org/pkg/g-brief")
4247 (synopsis "Letter document class")
4248 (description
4249 "This package is designed for formatting formless letters in German; it
4250 can also be used for English (by those who can read the documentation). There
4251 are LaTeX 2.09 @code{documentstyle} and LaTeX 2e class files for both an
4252 \"old\" and a \"new\" version of g-brief.")
4253 (license license:lppl)))
4254
4255 (define-public texlive-latex-galois
4256 (package
4257 (name "texlive-latex-galois")
4258 (version (number->string %texlive-revision))
4259 (source (origin
4260 (method svn-fetch)
4261 (uri (texlive-ref "latex" "galois"))
4262 (file-name (string-append name "-" version "-checkout"))
4263 (sha256
4264 (base32
4265 "0d4l0msk8j5pi95xnmm9wygv1vbpkwkv5amx9l0km86cs79jpp1h"))))
4266 (build-system texlive-build-system)
4267 (arguments '(#:tex-directory "latex/galois"))
4268 (home-page "https://www.ctan.org/pkg/galois")
4269 (synopsis "Typeset Galois connections")
4270 (description
4271 "The package deals with connections in two-dimensional style, optionally
4272 in colour.")
4273 (license license:lppl)))
4274
4275 (define-public texlive-latex-gcite
4276 (package
4277 (name "texlive-latex-gcite")
4278 (version (number->string %texlive-revision))
4279 (source (origin
4280 (method svn-fetch)
4281 (uri (texlive-ref "latex" "gcite"))
4282 (file-name (string-append name "-" version "-checkout"))
4283 (sha256
4284 (base32
4285 "03g9by54yrypn599y98r1xh7qw0bbbmpzq0bfwpj6j5q5rkl1mfa"))))
4286 (build-system texlive-build-system)
4287 (arguments '(#:tex-directory "latex/gcite"))
4288 (home-page "https://www.ctan.org/pkg/gcite")
4289 (synopsis "Citations in a reader-friendly style")
4290 (description
4291 "The package allows citations in the German style, which is considered by
4292 many to be particularly reader-friendly. The citation provides a small amount
4293 of bibliographic information in a footnote on the page where each citation is
4294 made. It combines a desire to eliminate unnecessary page-turning with the
4295 look-up efficiency afforded by numeric citations. The package makes use of
4296 BibLaTeX, and is considered experimental.")
4297 (license license:lppl1.3+)))
4298
4299 (define-public texlive-latex-geometry
4300 (package
4301 (name "texlive-latex-geometry")
4302 (version (number->string %texlive-revision))
4303 (source (origin
4304 (method svn-fetch)
4305 (uri (texlive-ref "latex" "geometry"))
4306 (file-name (string-append name "-" version "-checkout"))
4307 (sha256
4308 (base32
4309 "0yw6bjfgsli3s1dldsgb7mkr7lnk329cgdjbgs8z2xn59pmmdsn4"))))
4310 (build-system texlive-build-system)
4311 (arguments '(#:tex-directory "latex/geometry"))
4312 (propagated-inputs
4313 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek))) ;for ifpdf
4314 (home-page "https://www.ctan.org/pkg/geometry")
4315 (synopsis "Flexible and complete interface to document dimensions")
4316 (description
4317 "This package provides an easy and flexible user interface to customize
4318 page layout, implementing auto-centering and auto-balancing mechanisms so that
4319 the users have only to give the least description for the page layout. The
4320 package knows about all the standard paper sizes, so that the user need not
4321 know what the nominal \"real\" dimensions of the paper are, just its standard
4322 name (such as a4, letter, etc.). An important feature is the package's
4323 ability to communicate the paper size it's set up to the output.")
4324 (license license:lppl)))
4325
4326 (define-public texlive-latex-mdwtools
4327 (package
4328 (name "texlive-latex-mdwtools")
4329 (version (number->string %texlive-revision))
4330 (source (origin
4331 (method svn-fetch)
4332 (uri (texlive-ref "latex" "mdwtools"))
4333 (file-name (string-append name "-" version "-checkout"))
4334 (sha256
4335 (base32
4336 "0caxs74hla28hc67csf5i5ahadx97w8vxh3mdmsprxbpd1mr7ssg"))))
4337 (build-system texlive-build-system)
4338 (arguments '(#:tex-directory "latex/mdwtools"))
4339 (home-page "https://www.ctan.org/pkg/mdwtools")
4340 (synopsis "Miscellaneous tools by Mark Wooding")
4341 (description
4342 "This collection of tools includes: @code{atsupport} for short commands
4343 starting with @code{@@}, macros to sanitize the OT1 encoding of the
4344 @code{cmtt} fonts; a @code{doafter} command; improved @code{footnote} support;
4345 @code{mathenv} for various alignment in maths; list handling; @code{mdwmath}
4346 which adds some minor changes to LaTeX maths; a rewrite of LaTeX's tabular and
4347 array environments; verbatim handling; and syntax diagrams.")
4348 (license license:gpl3+)))
4349
4350 (define-public texlive-latex-polyglossia
4351 (package
4352 (name "texlive-latex-polyglossia")
4353 (version (number->string %texlive-revision))
4354 (source (origin
4355 (method svn-fetch)
4356 (uri (texlive-ref "latex" "polyglossia"))
4357 (file-name (string-append name "-" version "-checkout"))
4358 (sha256
4359 (base32
4360 "03ma58z3ypsbp7zgkzb1ylpn2ygr27cxzkf042ns0rif4g8s491f"))))
4361 (build-system texlive-build-system)
4362 (arguments '(#:tex-directory "latex/polyglossia"))
4363 (home-page "https://www.ctan.org/pkg/polyglossia")
4364 (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
4365 (description
4366 "This package provides a complete Babel replacement for users of LuaLaTeX
4367 and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least.")
4368 (license license:lppl1.3+)))
4369
4370 (define-public texlive-latex-supertabular
4371 (package
4372 (name "texlive-latex-supertabular")
4373 (version (number->string %texlive-revision))
4374 (source (origin
4375 (method svn-fetch)
4376 (uri (texlive-ref "latex" "supertabular"))
4377 (file-name (string-append name "-" version "-checkout"))
4378 (sha256
4379 (base32
4380 "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
4381 (build-system texlive-build-system)
4382 (arguments '(#:tex-directory "latex/supertabular"))
4383 (home-page "https://www.ctan.org/pkg/supertabular")
4384 (synopsis "Multi-page tables package")
4385 (description
4386 "This package was a predecessor of @code{longtable}; the newer
4387 package (designed on quite different principles) is easier to use and more
4388 flexible, in many cases, but supertabular retains its usefulness in a few
4389 situations where longtable has problems.")
4390 (license license:lppl1.3+)))
4391
4392 (define-public texlive-tex-texinfo
4393 (package
4394 (name "texlive-tex-texinfo")
4395 (version (number->string %texlive-revision))
4396 (source (origin
4397 (method svn-fetch)
4398 (uri (svn-reference
4399 (url (string-append "svn://www.tug.org/texlive/tags/"
4400 %texlive-tag "/Master/texmf-dist/"
4401 "/tex/texinfo"))
4402 (revision %texlive-revision)))
4403 (file-name (string-append name "-" version "-checkout"))
4404 (sha256
4405 (base32
4406 "06cf821y1j7jdg93pb41ayigrfwgn0y49d7w1025zlijjxi6bvjp"))))
4407 (build-system trivial-build-system)
4408 (arguments
4409 `(#:modules ((guix build utils))
4410 #:builder
4411 (begin
4412 (use-modules (guix build utils))
4413 (let ((target (string-append (assoc-ref %outputs "out")
4414 "/share/texmf-dist/tex/texinfo")))
4415 (mkdir-p target)
4416 (copy-recursively (assoc-ref %build-inputs "source") target)
4417 #t))))
4418 (home-page "https://www.ctan.org/pkg/texinfo")
4419 (synopsis "TeX macros to handle Texinfo files")
4420 (description
4421 "Texinfo is the preferred format for documentation in the GNU project;
4422 the format may be used to produce online or printed output from a single
4423 source. The Texinfo macros may be used to produce printable output using TeX;
4424 other programs in the distribution offer online interactive use (with
4425 hypertext linkages in some cases).")
4426 (license license:gpl3+)))
4427
4428 (define-public texlive-latex-upquote
4429 (package
4430 (name "texlive-latex-upquote")
4431 (version (number->string %texlive-revision))
4432 (source (origin
4433 (method svn-fetch)
4434 (uri (texlive-ref "latex" "upquote"))
4435 (file-name (string-append name "-" version "-checkout"))
4436 (sha256
4437 (base32
4438 "0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp"))))
4439 (build-system texlive-build-system)
4440 (arguments '(#:tex-directory "latex/upquote"))
4441 (home-page "https://www.ctan.org/pkg/upquote")
4442 (synopsis "Show \"realistic\" quotes in verbatim")
4443 (description
4444 "Typewriter-style fonts are best for program listings, but Computer
4445 Modern Typewriter prints @code{`} and @code{'} as bent opening and closing
4446 single quotes. Other fonts, and most programming languages, print @code{`} as
4447 a grave accent and @code{'} upright; @code{'} is used both to open and to
4448 close quoted strings. The package switches the typewriter font to Computer
4449 Modern Typewriter in OT1 encoding, and modifies the behaviour of
4450 @code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
4451 in the expected way. It does this regardless of other fonts or encodings in
4452 use, so long as the package is loaded after the other fonts were. The package
4453 does not affect @code{\\tt}, @code{\\texttt}, etc.")
4454 (license license:lppl1.2+)))
4455
4456 (define-public texlive-latex-anysize
4457 (package
4458 (name "texlive-latex-anysize")
4459 (version (number->string %texlive-revision))
4460 (source (origin
4461 (method svn-fetch)
4462 (uri (svn-reference
4463 (url (string-append "svn://www.tug.org/texlive/tags/"
4464 %texlive-tag "/Master/texmf-dist/"
4465 "/tex/latex/anysize"))
4466 (revision %texlive-revision)))
4467 (file-name (string-append name "-" version "-checkout"))
4468 (sha256
4469 (base32
4470 "19khwqjlvznc955sijhww3c4zbb0053rvzwv9nz738qknq7y18vb"))))
4471 (build-system trivial-build-system)
4472 (arguments
4473 `(#:modules ((guix build utils))
4474 #:builder
4475 (begin
4476 (use-modules (guix build utils))
4477 (let ((target (string-append (assoc-ref %outputs "out")
4478 "/share/texmf-dist/tex/latex/anysize")))
4479 (mkdir-p target)
4480 (copy-recursively (assoc-ref %build-inputs "source") target)
4481 #t))))
4482 (home-page "https://www.ctan.org/pkg/anysize")
4483 (synopsis "Simple package to set up document margins")
4484 (description
4485 "This is a simple package to set up document margins. This package is
4486 considered obsolete; alternatives are the @code{typearea} package from the
4487 @code{koma-script} bundle, or the @code{geometry} package.")
4488 (license license:public-domain)))
4489
4490 (define-public texlive-latex-appendix
4491 (package
4492 (name "texlive-latex-appendix")
4493 (version (number->string %texlive-revision))
4494 (source (origin
4495 (method svn-fetch)
4496 (uri (texlive-ref "latex" "appendix"))
4497 (file-name (string-append name "-" version "-checkout"))
4498 (sha256
4499 (base32
4500 "0rxfpr8vq3brwx5rc7qn91ixlp9zva4zrms8a579fqa1g5yva7vg"))))
4501 (build-system texlive-build-system)
4502 (arguments '(#:tex-directory "latex/appendix"))
4503 (home-page "https://www.ctan.org/pkg/appendix")
4504 (synopsis "Extra control of appendices")
4505 (description
4506 "The appendix package provides various ways of formatting the titles of
4507 appendices. Also (sub)appendices environments are provided that can be used,
4508 for example, for per chapter/section appendices. An @code{appendices}
4509 environment is provided which can be used instead of the @code{\\appendix}
4510 command.")
4511 (license license:lppl)))
4512
4513 (define-public texlive-latex-changebar
4514 (package
4515 (name "texlive-latex-changebar")
4516 (version (number->string %texlive-revision))
4517 (source (origin
4518 (method svn-fetch)
4519 (uri (texlive-ref "latex" "changebar"))
4520 (file-name (string-append name "-" version "-checkout"))
4521 (sha256
4522 (base32
4523 "05x15ilynqrl448h8l6qiraygamdldlngz89a2bw7kg74fym14ch"))))
4524 (build-system texlive-build-system)
4525 (arguments '(#:tex-directory "latex/changebar"))
4526 (home-page "https://www.ctan.org/pkg/changebar")
4527 (synopsis "Generate changebars in LaTeX documents")
4528 (description
4529 "Identify areas of text to be marked with changebars with the
4530 @code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The
4531 package uses @code{drivers} to place the bars; the available drivers can work
4532 with @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI
4533 drivers, and VTeX and pdfTeX.")
4534 (license license:lppl)))
4535
4536 (define-public texlive-latex-cmap
4537 (package
4538 (name "texlive-latex-cmap")
4539 (version (number->string %texlive-revision))
4540 (source (origin
4541 (method svn-fetch)
4542 (uri (svn-reference
4543 (url (string-append "svn://www.tug.org/texlive/tags/"
4544 %texlive-tag "/Master/texmf-dist/"
4545 "/tex/latex/cmap"))
4546 (revision %texlive-revision)))
4547 (file-name (string-append name "-" version "-checkout"))
4548 (sha256
4549 (base32
4550 "1s1rv6zgw105w2j6ffhnk914qrix87y1ndzri1q72g2kbr91zlbg"))))
4551 (build-system trivial-build-system)
4552 (arguments
4553 `(#:modules ((guix build utils))
4554 #:builder
4555 (begin
4556 (use-modules (guix build utils))
4557 (let ((target (string-append (assoc-ref %outputs "out")
4558 "/share/texmf-dist/tex/latex/cmap")))
4559 (mkdir-p target)
4560 (copy-recursively (assoc-ref %build-inputs "source") target)
4561 #t))))
4562 (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\
4563 Master/texmf-dist/tex/latex/cmap/")
4564 (synopsis "CMap support for PDF files")
4565 (description
4566 "This package embeds CMap tables into PDF files to make search and
4567 copy-and-paste functions work properly.")
4568 (license license:lppl)))
4569
4570 (define-public texlive-latex-colortbl
4571 (package
4572 (name "texlive-latex-colortbl")
4573 (version (number->string %texlive-revision))
4574 (source (origin
4575 (method svn-fetch)
4576 (uri (texlive-ref "latex" "colortbl"))
4577 (file-name (string-append name "-" version "-checkout"))
4578 (sha256
4579 (base32
4580 "190pmq8la2rq07xry8bn8z8yywzxv6fqyqaj7yjfj5rgw6x0mas8"))))
4581 (build-system texlive-build-system)
4582 (arguments '(#:tex-directory "latex/colortbl"))
4583 (home-page "https://www.ctan.org/pkg/colortbl")
4584 (synopsis "Add colour to LaTeX tables")
4585 (description
4586 "This package allows rows, columns, and even individual cells in LaTeX
4587 tables to be coloured.")
4588 (license license:lppl)))
4589
4590 (define-public texlive-latex-fancybox
4591 (package
4592 (name "texlive-latex-fancybox")
4593 (version (number->string %texlive-revision))
4594 (source (origin
4595 (method svn-fetch)
4596 (uri (svn-reference
4597 (url (string-append "svn://www.tug.org/texlive/tags/"
4598 %texlive-tag "/Master/texmf-dist/"
4599 "/tex/latex/fancybox"))
4600 (revision %texlive-revision)))
4601 (file-name (string-append name "-" version "-checkout"))
4602 (sha256
4603 (base32
4604 "0smmnaad2q8qwicay1frri990lv65l0k8cwzsvdsyp3jk8kp042w"))))
4605 (build-system trivial-build-system)
4606 (arguments
4607 `(#:modules ((guix build utils))
4608 #:builder
4609 (begin
4610 (use-modules (guix build utils))
4611 (let ((target (string-append (assoc-ref %outputs "out")
4612 "/share/texmf-dist/tex/latex/fancybox")))
4613 (mkdir-p target)
4614 (copy-recursively (assoc-ref %build-inputs "source") target)
4615 #t))))
4616 (home-page "https://www.ctan.org/pkg/fancybox")
4617 (synopsis "Variants of \\fbox and other games with boxes")
4618 (description
4619 "This package provides variants of @code{\\fbox}: @code{\\shadowbox},
4620 @code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for
4621 using box macros and flexible verbatim macros. You can box mathematics,
4622 floats, center, flushleft, and flushright, lists, and pages.")
4623 (license license:lppl1.2+)))
4624
4625 (define-public texlive-latex-fancyhdr
4626 (package
4627 (name "texlive-latex-fancyhdr")
4628 (version (number->string %texlive-revision))
4629 (source (origin
4630 (method svn-fetch)
4631 (uri (svn-reference
4632 (url (string-append "svn://www.tug.org/texlive/tags/"
4633 %texlive-tag "/Master/texmf-dist/"
4634 "/tex/latex/fancyhdr"))
4635 (revision %texlive-revision)))
4636 (file-name (string-append name "-" version "-checkout"))
4637 (sha256
4638 (base32
4639 "1xsnzx7vgdfh9zh2m7bjz6bgdpxsgb1kyc19p50vhs34x5nbgsnr"))))
4640 (build-system trivial-build-system)
4641 (arguments
4642 `(#:modules ((guix build utils))
4643 #:builder
4644 (begin
4645 (use-modules (guix build utils))
4646 (let ((target (string-append (assoc-ref %outputs "out")
4647 "/share/texmf-dist/tex/latex/fancyhdr")))
4648 (mkdir-p target)
4649 (copy-recursively (assoc-ref %build-inputs "source") target)
4650 #t))))
4651 (home-page "https://www.ctan.org/pkg/fancyhdr")
4652 (synopsis "Extensive control of page headers and footers in LaTeX2e")
4653 (description
4654 "The package provides extensive facilities, both for constructing headers
4655 and footers, and for controlling their use (for example, at times when LaTeX
4656 would automatically change the heading style in use).")
4657 (license license:lppl)))
4658
4659 (define-public texlive-latex-float
4660 (package
4661 (name "texlive-latex-float")
4662 (version (number->string %texlive-revision))
4663 (source (origin
4664 (method svn-fetch)
4665 (uri (texlive-ref "latex" "float"))
4666 (file-name (string-append name "-" version "-checkout"))
4667 (sha256
4668 (base32
4669 "0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
4670 (build-system texlive-build-system)
4671 (arguments '(#:tex-directory "latex/float"))
4672 (home-page "https://www.ctan.org/pkg/float")
4673 (synopsis "Improved interface for floating objects")
4674 (description
4675 "This package improves the interface for defining floating objects such
4676 as figures and tables. It introduces the boxed float, the ruled float and the
4677 plaintop float. You can define your own floats and improve the behaviour of
4678 the old ones. The package also provides the @code{H} float modifier option of
4679 the obsolete @code{here} package. You can select this as automatic default
4680 with @code{\\floatplacement{figure}{H}}.")
4681 (license license:lppl)))
4682
4683 (define-public texlive-latex-footmisc
4684 (package
4685 (name "texlive-latex-footmisc")
4686 (version (number->string %texlive-revision))
4687 (source (origin
4688 (method svn-fetch)
4689 (uri (texlive-ref "latex" "footmisc"))
4690 (file-name (string-append name "-" version "-checkout"))
4691 (sha256
4692 (base32
4693 "03x61wwql8nh6zrqiiiq3rb0x7m3pn48c606zapy19y21fybwdxs"))))
4694 (build-system texlive-build-system)
4695 (arguments '(#:tex-directory "latex/footmisc"))
4696 (home-page "https://www.ctan.org/pkg/footmisc")
4697 (synopsis "Range of footnote options")
4698 (description
4699 "This is a collection of ways to change the typesetting of footnotes.
4700 The package provides means of changing the layout of the footnotes themselves,
4701 a way to number footnotes per page, to make footnotes disappear in a
4702 \"moving\" argument, and to deal with multiple references to footnotes from
4703 the same place. The package also has a range of techniques for labelling
4704 footnotes with symbols rather than numbers.")
4705 (license license:lppl1.3+)))
4706
4707 (define-public texlive-latex-listings
4708 (package
4709 (name "texlive-latex-listings")
4710 (version (number->string %texlive-revision))
4711 (source (origin
4712 (method svn-fetch)
4713 (uri (texlive-ref "latex" "listings"))
4714 (file-name (string-append name "-" version "-checkout"))
4715 (sha256
4716 (base32
4717 "1nsn9wp3wl12b36c0sqrim33lf33cr5wky0h4ncnw8lvqgm7h8wf"))))
4718 (build-system texlive-build-system)
4719 (arguments
4720 '(#:tex-directory "latex/listings"
4721 #:build-targets '("listings.ins")))
4722 (home-page "https://www.ctan.org/pkg/listings")
4723 (synopsis "Typeset source code listings using LaTeX")
4724 (description
4725 "The package enables the user to typeset programs (programming code)
4726 within LaTeX; the source code is read directly by TeX---no front-end processor
4727 is needed. Keywords, comments and strings can be typeset using different
4728 styles. Support for @code{hyperref} is provided.")
4729 (license license:lppl1.3+)))
4730
4731 (define-public texlive-latex-jknapltx
4732 (package
4733 (name "texlive-latex-jknapltx")
4734 (version (number->string %texlive-revision))
4735 (source (origin
4736 (method svn-fetch)
4737 (uri (svn-reference
4738 (url (string-append "svn://www.tug.org/texlive/tags/"
4739 %texlive-tag "/Master/texmf-dist/"
4740 "/tex/latex/jknapltx"))
4741 (revision %texlive-revision)))
4742 (file-name (string-append name "-" version "-checkout"))
4743 (sha256
4744 (base32
4745 "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
4746 (build-system trivial-build-system)
4747 (arguments
4748 `(#:modules ((guix build utils))
4749 #:builder
4750 (begin
4751 (use-modules (guix build utils))
4752 (let ((target (string-append (assoc-ref %outputs "out")
4753 "/share/texmf-dist/tex/latex/jknapltx")))
4754 (mkdir-p target)
4755 (copy-recursively (assoc-ref %build-inputs "source") target)
4756 #t))))
4757 (home-page "https://www.ctan.org/pkg/jknappen")
4758 (synopsis "Miscellaneous packages by Joerg Knappen")
4759 (description
4760 "This package provides miscellaneous macros by Joerg Knappen, including:
4761 represent counters in greek; Maxwell's non-commutative division;
4762 @code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
4763 @code{inputenc} definition files that allow verbatim input in the respective
4764 ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
4765 extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
4766 transliterate semitic languages; patches to make (La)TeX formulae embeddable
4767 in SGML; use maths minus in text as appropriate; simple Young tableaux.")
4768 (license license:gpl2)))
4769
4770 (define-public texlive-fonts-ec
4771 (package
4772 (name "texlive-fonts-ec")
4773 (version (number->string %texlive-revision))
4774 (source (origin
4775 (method svn-fetch)
4776 (uri (svn-reference
4777 (url (string-append "svn://www.tug.org/texlive/tags/"
4778 %texlive-tag "/Master/texmf-dist/"
4779 "/fonts/source/jknappen/ec/"))
4780 (revision %texlive-revision)))
4781 (file-name (string-append name "-" version "-checkout"))
4782 (sha256
4783 (base32
4784 "12av65fbz9xiashm09c9m1fj1mijxls5xspd7652ry1n5s0nixy4"))))
4785 (build-system gnu-build-system)
4786 (arguments
4787 `(#:modules ((guix build gnu-build-system)
4788 (guix build utils)
4789 (srfi srfi-1)
4790 (srfi srfi-26))
4791 #:tests? #f ; no tests
4792 #:phases
4793 (modify-phases %standard-phases
4794 (delete 'configure)
4795 (replace 'build
4796 (lambda* (#:key inputs #:allow-other-keys)
4797 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
4798 ;; Tell mf where to find mf.base
4799 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
4800 ;; Tell mf where to look for source files
4801 (setenv "MFINPUTS"
4802 (string-append (getcwd) ":"
4803 mf "/share/texmf-dist/metafont/base:"
4804 (assoc-ref inputs "texlive-fonts-cm")
4805 "/share/texmf-dist/fonts/source/public/cm")))
4806 (mkdir "build")
4807 (for-each (lambda (font)
4808 (format #t "building font ~a\n" font)
4809 (invoke "mf" "-progname=mf"
4810 "-output-directory=build"
4811 (string-append "\\"
4812 "mode:=ljfour; "
4813 "mag:=1; "
4814 "batchmode; "
4815 "input " (basename font ".mf"))))
4816 (find-files "." "[0-9]+\\.mf$"))
4817 #t))
4818 (replace 'install
4819 (lambda* (#:key outputs #:allow-other-keys)
4820 (let* ((out (assoc-ref outputs "out"))
4821 (tfm (string-append
4822 out "/share/texmf-dist/fonts/tfm/jknappen/ec"))
4823 (mf (string-append
4824 out "/share/texmf-dist/fonts/source/jknappen/ec")))
4825 (for-each (cut install-file <> tfm)
4826 (find-files "build" "\\.*"))
4827 (for-each (cut install-file <> mf)
4828 (find-files "." "\\.mf"))
4829 #t))))))
4830 (native-inputs
4831 `(("texlive-bin" ,texlive-bin)
4832 ("texlive-metafont-base" ,texlive-metafont-base)
4833 ("texlive-fonts-cm" ,texlive-fonts-cm)))
4834 (home-page "https://www.ctan.org/pkg/ec")
4835 (synopsis "Computer modern fonts in T1 and TS1 encodings")
4836 (description
4837 "The EC fonts are European Computer Modern Fonts, supporting the complete
4838 LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.
4839 These fonts are intended to be stable with no changes being made to the tfm
4840 files. The set also contains a Text Companion Symbol font, called @code{tc},
4841 featuring many useful characters needed in text typesetting, for example
4842 oldstyle digits, currency symbols (including the newly created Euro symbol),
4843 the permille sign, copyright, trade mark and servicemark as well as a copyleft
4844 sign, and many others. Recent releases of LaTeX2e support the EC fonts. The
4845 EC fonts supersede the preliminary version released as the DC fonts. The
4846 fonts are available in (traced) Adobe Type 1 format, as part of the
4847 @code{cm-super} bundle. The other Computer Modern-style T1-encoded Type 1
4848 set, Latin Modern, is not actually a direct development of the EC set, and
4849 differs from the EC in a number of particulars.")
4850 (license (license:fsf-free "https://www.tug.org/svn/texlive/tags/\
4851 texlive-2017.1/Master/texmf-dist/doc/fonts/ec/copyrite.txt"))))
4852
4853 (define-public texlive-fonts-adobe-times
4854 (package
4855 (name "texlive-fonts-adobe-times")
4856 (version (number->string %texlive-revision))
4857 (source (origin
4858 (method svn-fetch)
4859 (uri (svn-reference
4860 (url (string-append "svn://www.tug.org/texlive/tags/"
4861 %texlive-tag "/Master/texmf-dist/"
4862 "/fonts/type1/urw/times/"))
4863 (revision %texlive-revision)))
4864 (file-name (string-append name "-" version "-checkout"))
4865 (sha256
4866 (base32
4867 "15vzyr7favkv1mj00qxr03s89kw78nd066fh69by93272g8p5sgd"))))
4868 (build-system trivial-build-system)
4869 (arguments
4870 `(#:modules ((guix build utils)
4871 (ice-9 match))
4872 #:builder
4873 (begin
4874 (use-modules (guix build utils)
4875 (ice-9 match))
4876 (let ((root (string-append (assoc-ref %outputs "out")
4877 "/share/texmf-dist/"))
4878 (pkgs '(("source" . "fonts/type1/urw/times")
4879
4880 ("times-afm" . "fonts/afm/adobe/times")
4881 ("times-tfm" . "fonts/tfm/adobe/times")
4882 ("times-vf" . "fonts/vf/adobe/times")
4883
4884 ("urw-afm" . "fonts/afm/urw/times")
4885 ("urw35vf-tfm" . "fonts/tfm/urw35vf/times")
4886 ("urw35vf-vf" . "fonts/vf/urw35vf/times")
4887
4888 ("times-tex" . "tex/latex/times")
4889 ("dvips" . "dvips/times")
4890 ("fonts-map" . "fonts/map/dvips/times"))))
4891 (for-each (match-lambda
4892 ((pkg . dir)
4893 (let ((target (string-append root dir)))
4894 (mkdir-p target)
4895 (copy-recursively (assoc-ref %build-inputs pkg)
4896 target))))
4897 pkgs)
4898 #t))))
4899 (native-inputs
4900 `(("times-afm"
4901 ,(origin
4902 (method svn-fetch)
4903 (uri (svn-reference
4904 (url (string-append "svn://www.tug.org/texlive/tags/"
4905 %texlive-tag "/Master/texmf-dist/"
4906 "/fonts/afm/adobe/times"))
4907 (revision %texlive-revision)))
4908 (file-name (string-append name "-afm-" version "-checkout"))
4909 (sha256
4910 (base32
4911 "1k7h6vihfc6ri2lq9ggnq2g4zq3qcgq1vd0hr486g9cqrdpys6cy"))))
4912 ("times-tfm"
4913 ,(origin
4914 (method svn-fetch)
4915 (uri (svn-reference
4916 (url (string-append "svn://www.tug.org/texlive/tags/"
4917 %texlive-tag "/Master/texmf-dist/"
4918 "/fonts/tfm/adobe/times"))
4919 (revision %texlive-revision)))
4920 (file-name (string-append name "-tfm-" version "-checkout"))
4921 (sha256
4922 (base32
4923 "1hbgkjnf5xyganbznwpwszvr3iyk4bzb0ys4hd8ybawp60paadrr"))))
4924 ("times-vf"
4925 ,(origin
4926 (method svn-fetch)
4927 (uri (svn-reference
4928 (url (string-append "svn://www.tug.org/texlive/tags/"
4929 %texlive-tag "/Master/texmf-dist/"
4930 "/fonts/vf/adobe/times"))
4931 (revision %texlive-revision)))
4932 (file-name (string-append name "-vf-" version "-checkout"))
4933 (sha256
4934 (base32
4935 "18rfspnwdw9r81dy18lb4w96d09b6c4g7y80azwylalkhwdf2lfp"))))
4936 ("urw-afm"
4937 ,(origin
4938 (method svn-fetch)
4939 (uri (svn-reference
4940 (url (string-append "svn://www.tug.org/texlive/tags/"
4941 %texlive-tag "/Master/texmf-dist/"
4942 "/fonts/afm/urw/times"))
4943 (revision %texlive-revision)))
4944 (file-name (string-append name "-urw-afm-" version "-checkout"))
4945 (sha256
4946 (base32
4947 "0g0xpsyn6634g0b4rpd420v7i4gkz3zr12vcy2b8csbcscjvwri5"))))
4948 ("urw35vf-tfm"
4949 ,(origin
4950 (method svn-fetch)
4951 (uri (svn-reference
4952 (url (string-append "svn://www.tug.org/texlive/tags/"
4953 %texlive-tag "/Master/texmf-dist/"
4954 "/fonts/tfm/urw35vf/times"))
4955 (revision %texlive-revision)))
4956 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
4957 (sha256
4958 (base32
4959 "0a4idlvpaqd0ypqgy1xw0rpx8q23bvssg8xq757zzn3zikj0w7pr"))))
4960 ("urw35vf-vf"
4961 ,(origin
4962 (method svn-fetch)
4963 (uri (svn-reference
4964 (url (string-append "svn://www.tug.org/texlive/tags/"
4965 %texlive-tag "/Master/texmf-dist/"
4966 "/fonts/vf/urw35vf/times"))
4967 (revision %texlive-revision)))
4968 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
4969 (sha256
4970 (base32
4971 "05mppwxd4c5x0yw50gca726f0ylc1rk8jf0jjkrriixq6rnw03di"))))
4972 ("times-tex"
4973 ,(origin
4974 (method svn-fetch)
4975 (uri (svn-reference
4976 (url (string-append "svn://www.tug.org/texlive/tags/"
4977 %texlive-tag "/Master/texmf-dist/"
4978 "/tex/latex/times"))
4979 (revision %texlive-revision)))
4980 (file-name (string-append name "-tex-" version "-checkout"))
4981 (sha256
4982 (base32
4983 "1gmd0x7c3vkvfzgmrsp4866rcdbyimfk3bjr91zaadc41r1i8xrp"))))
4984 ("dvips"
4985 ,(origin
4986 (method svn-fetch)
4987 (uri (svn-reference
4988 (url (string-append "svn://www.tug.org/texlive/tags/"
4989 %texlive-tag "/Master/texmf-dist/"
4990 "/dvips/times/"))
4991 (revision %texlive-revision)))
4992 (file-name (string-append name "-dvips-" version "-checkout"))
4993 (sha256
4994 (base32
4995 "1fvqpgqi7bp2q76nf5kmlhsdijxw65arqfy3ax3djwih3yg12mp0"))))
4996 ("fonts-map"
4997 ,(origin
4998 (method svn-fetch)
4999 (uri (svn-reference
5000 (url (string-append "svn://www.tug.org/texlive/tags/"
5001 %texlive-tag "/Master/texmf-dist/"
5002 "/fonts/map/dvips/times/"))
5003 (revision %texlive-revision)))
5004 (file-name (string-append name "-fonts-map-" version "-checkout"))
5005 (sha256
5006 (base32
5007 "12f00gzs2zgllkm59qdhw2xxj7lvg3p256232f1l275z3pldfqqi"))))))
5008 (home-page "https://ctan.org/pkg/urw-base35")
5009 (synopsis "URW Base 35 font pack for LaTeX")
5010 (description
5011 "This package provides a drop-in replacements for the Times font from
5012 Adobe's basic set.")
5013 ;; No license version specified.
5014 (license license:gpl3+)))
5015
5016 (define-public texlive-fonts-adobe-palatino
5017 (package
5018 (name "texlive-fonts-adobe-palatino")
5019 (version (number->string %texlive-revision))
5020 (source (origin
5021 (method svn-fetch)
5022 (uri (svn-reference
5023 (url (string-append "svn://www.tug.org/texlive/tags/"
5024 %texlive-tag "/Master/texmf-dist/"
5025 "/fonts/type1/urw/palatino/"))
5026 (revision %texlive-revision)))
5027 (file-name (string-append name "-" version "-checkout"))
5028 (sha256
5029 (base32
5030 "18dw5260c6fy7acxaqwrg3hw04kg63ijq4lkn56q5pa2g6nyylrp"))))
5031 (build-system trivial-build-system)
5032 (arguments
5033 `(#:modules ((guix build utils)
5034 (ice-9 match))
5035 #:builder
5036 (begin
5037 (use-modules (guix build utils)
5038 (ice-9 match))
5039 (let ((root (string-append (assoc-ref %outputs "out")
5040 "/share/texmf-dist/"))
5041 (pkgs '(("source" . "fonts/type1/urw/palatino")
5042
5043 ("palatino-afm" . "fonts/afm/adobe/palatino")
5044 ("palatino-tfm" . "fonts/tfm/adobe/palatino")
5045 ("palatino-vf" . "fonts/vf/adobe/palatino")
5046
5047 ("urw-afm" . "fonts/afm/urw/palatino")
5048 ("urw35vf-tfm" . "fonts/tfm/urw35vf/palatino")
5049 ("urw35vf-vf" . "fonts/vf/urw35vf/palatino")
5050
5051 ("palatino-tex" . "tex/latex/palatino")
5052 ("dvips" . "dvips/palatino")
5053 ("fonts-map" . "fonts/map/dvips/palatino"))))
5054 (for-each (match-lambda
5055 ((pkg . dir)
5056 (let ((target (string-append root dir)))
5057 (mkdir-p target)
5058 (copy-recursively (assoc-ref %build-inputs pkg)
5059 target))))
5060 pkgs)
5061 #t))))
5062 (native-inputs
5063 `(("palatino-afm"
5064 ,(origin
5065 (method svn-fetch)
5066 (uri (svn-reference
5067 (url (string-append "svn://www.tug.org/texlive/tags/"
5068 %texlive-tag "/Master/texmf-dist/"
5069 "/fonts/afm/adobe/palatino"))
5070 (revision %texlive-revision)))
5071 (file-name (string-append name "-afm-" version "-checkout"))
5072 (sha256
5073 (base32
5074 "0pxizay730cx7rb9y5bqq9dn1zxx3arc33rmdsn7l29pc51flmmi"))))
5075 ("palatino-tfm"
5076 ,(origin
5077 (method svn-fetch)
5078 (uri (svn-reference
5079 (url (string-append "svn://www.tug.org/texlive/tags/"
5080 %texlive-tag "/Master/texmf-dist/"
5081 "/fonts/tfm/adobe/palatino"))
5082 (revision %texlive-revision)))
5083 (file-name (string-append name "-tfm-" version "-checkout"))
5084 (sha256
5085 (base32
5086 "1w1vm0sk9kpsy14yhyf1v1q3c6b97cgbba74g578bcwjlh810mg0"))))
5087 ("palatino-vf"
5088 ,(origin
5089 (method svn-fetch)
5090 (uri (svn-reference
5091 (url (string-append "svn://www.tug.org/texlive/tags/"
5092 %texlive-tag "/Master/texmf-dist/"
5093 "/fonts/vf/adobe/palatino"))
5094 (revision %texlive-revision)))
5095 (file-name (string-append name "-vf-" version "-checkout"))
5096 (sha256
5097 (base32
5098 "1maqfis8hpybcn9lmm8r2b1g56620lfpsncg0742c3kkjd6dh97h"))))
5099 ("urw-afm"
5100 ,(origin
5101 (method svn-fetch)
5102 (uri (svn-reference
5103 (url (string-append "svn://www.tug.org/texlive/tags/"
5104 %texlive-tag "/Master/texmf-dist/"
5105 "/fonts/afm/urw/palatino"))
5106 (revision %texlive-revision)))
5107 (file-name (string-append name "-urw-afm-" version "-checkout"))
5108 (sha256
5109 (base32
5110 "0gk0xwy1fs2si5kb1j3dzgm52c8sagv32gd9dmw88m7sgh5qkd87"))))
5111 ("urw35vf-tfm"
5112 ,(origin
5113 (method svn-fetch)
5114 (uri (svn-reference
5115 (url (string-append "svn://www.tug.org/texlive/tags/"
5116 %texlive-tag "/Master/texmf-dist/"
5117 "/fonts/tfm/urw35vf/palatino"))
5118 (revision %texlive-revision)))
5119 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5120 (sha256
5121 (base32
5122 "19aq3xwfg7vkf1qzjdxgcvcdqwpvpavq3l25y64xni72qx0kmppz"))))
5123 ("urw35vf-vf"
5124 ,(origin
5125 (method svn-fetch)
5126 (uri (svn-reference
5127 (url (string-append "svn://www.tug.org/texlive/tags/"
5128 %texlive-tag "/Master/texmf-dist/"
5129 "/fonts/vf/urw35vf/palatino"))
5130 (revision %texlive-revision)))
5131 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
5132 (sha256
5133 (base32
5134 "1lkn4p6zimrs0ah6mxsang4bicp8j7xzl016529a3f168an7mdmj"))))
5135 ("palatino-tex"
5136 ,(origin
5137 (method svn-fetch)
5138 (uri (svn-reference
5139 (url (string-append "svn://www.tug.org/texlive/tags/"
5140 %texlive-tag "/Master/texmf-dist/"
5141 "/tex/latex/palatino"))
5142 (revision %texlive-revision)))
5143 (file-name (string-append name "-tex-" version "-checkout"))
5144 (sha256
5145 (base32
5146 "0ng9w7i0p1nb51amla32jj86vx6p84m6qc7asam3g4x8w5jf7s27"))))
5147 ("dvips"
5148 ,(origin
5149 (method svn-fetch)
5150 (uri (svn-reference
5151 (url (string-append "svn://www.tug.org/texlive/tags/"
5152 %texlive-tag "/Master/texmf-dist/"
5153 "/dvips/palatino/"))
5154 (revision %texlive-revision)))
5155 (file-name (string-append name "-dvips-" version "-checkout"))
5156 (sha256
5157 (base32
5158 "1pdbkfmhx4kk3brh5lg6fyl9ad2kbjmkrhgcx84klnlhq01mfdhb"))))
5159 ("fonts-map"
5160 ,(origin
5161 (method svn-fetch)
5162 (uri (svn-reference
5163 (url (string-append "svn://www.tug.org/texlive/tags/"
5164 %texlive-tag "/Master/texmf-dist/"
5165 "/fonts/map/dvips/palatino/"))
5166 (revision %texlive-revision)))
5167 (file-name (string-append name "-fonts-map-" version "-checkout"))
5168 (sha256
5169 (base32
5170 "0rg13hyp652hp3gnrj5pbyb84zkqmyi1qnm8c6spcyaq8pm06l0d"))))))
5171 (home-page "https://ctan.org/pkg/urw-base35")
5172 (synopsis "URW Base 35 font pack for LaTeX")
5173 (description
5174 "This package provides a drop-in replacements for the Palatino font from
5175 Adobe's basic set.")
5176 ;; No license version specified.
5177 (license license:gpl3+)))
5178
5179 (define-public texlive-fonts-adobe-zapfding
5180 (package
5181 (name "texlive-fonts-adobe-zapfding")
5182 (version (number->string %texlive-revision))
5183 (source (origin
5184 (method svn-fetch)
5185 (uri (svn-reference
5186 (url (string-append "svn://www.tug.org/texlive/tags/"
5187 %texlive-tag "/Master/texmf-dist/"
5188 "/fonts/type1/urw/zapfding/"))
5189 (revision %texlive-revision)))
5190 (file-name (string-append name "-" version "-checkout"))
5191 (sha256
5192 (base32
5193 "1sp3jblg3khp0yj121blvhph6ib09919kyrsk5x2lg258yypqyis"))))
5194 (build-system trivial-build-system)
5195 (arguments
5196 `(#:modules ((guix build utils)
5197 (ice-9 match))
5198 #:builder
5199 (begin
5200 (use-modules (guix build utils)
5201 (ice-9 match))
5202 (let ((root (string-append (assoc-ref %outputs "out")
5203 "/share/texmf-dist/"))
5204 (pkgs '(("source" . "fonts/type1/urw/zapfding")
5205 ("zapf-afm" . "fonts/afm/adobe/zapfding")
5206 ("zapf-tfm" . "fonts/tfm/adobe/zapfding")
5207 ("urw-afm" . "fonts/afm/urw/zapfding")
5208 ("urw35vf-tfm" . "fonts/tfm/urw35vf/zapfding")
5209
5210 ("zapf-tex" . "tex/latex/zapfding")
5211 ("dvips" . "dvips/zapfding")
5212 ("fonts-map" . "fonts/map/dvips/zapfding"))))
5213 (for-each (match-lambda
5214 ((pkg . dir)
5215 (let ((target (string-append root dir)))
5216 (mkdir-p target)
5217 (copy-recursively (assoc-ref %build-inputs pkg)
5218 target))))
5219 pkgs)
5220 #t))))
5221 (native-inputs
5222 `(("zapf-afm"
5223 ,(origin
5224 (method svn-fetch)
5225 (uri (svn-reference
5226 (url (string-append "svn://www.tug.org/texlive/tags/"
5227 %texlive-tag "/Master/texmf-dist/"
5228 "/fonts/afm/adobe/zapfding"))
5229 (revision %texlive-revision)))
5230 (file-name (string-append name "-afm-" version "-checkout"))
5231 (sha256
5232 (base32
5233 "0qvl4w1bfcpiakkd8rvkism46qnvzj9w7x4r8z9m0y7mspbkblyr"))))
5234 ("zapf-tfm"
5235 ,(origin
5236 (method svn-fetch)
5237 (uri (svn-reference
5238 (url (string-append "svn://www.tug.org/texlive/tags/"
5239 %texlive-tag "/Master/texmf-dist/"
5240 "/fonts/tfm/adobe/zapfding"))
5241 (revision %texlive-revision)))
5242 (file-name (string-append name "-tfm-" version "-checkout"))
5243 (sha256
5244 (base32
5245 "1i8mh9xsl8l4cgsg3nl4ha9q6m55j122riclaxsvkc5ka83432qm"))))
5246 ("urw-afm"
5247 ,(origin
5248 (method svn-fetch)
5249 (uri (svn-reference
5250 (url (string-append "svn://www.tug.org/texlive/tags/"
5251 %texlive-tag "/Master/texmf-dist/"
5252 "/fonts/afm/urw/zapfding"))
5253 (revision %texlive-revision)))
5254 (file-name (string-append name "-urw-afm-" version "-checkout"))
5255 (sha256
5256 (base32
5257 "0m4qndqh7ji723ff82c5c1q8ziqvblbaip7vx05vnl15fqbsnfx1"))))
5258 ("urw35vf-tfm"
5259 ,(origin
5260 (method svn-fetch)
5261 (uri (svn-reference
5262 (url (string-append "svn://www.tug.org/texlive/tags/"
5263 %texlive-tag "/Master/texmf-dist/"
5264 "/fonts/tfm/urw35vf/zapfding"))
5265 (revision %texlive-revision)))
5266 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5267 (sha256
5268 (base32
5269 "167g2x6mpjfqh0w1fhjbw14qcx6ridrj2zm1bd8bi0l2d7phj28m"))))
5270 ("zapf-tex"
5271 ,(origin
5272 (method svn-fetch)
5273 (uri (svn-reference
5274 (url (string-append "svn://www.tug.org/texlive/tags/"
5275 %texlive-tag "/Master/texmf-dist/"
5276 "/tex/latex/zapfding"))
5277 (revision %texlive-revision)))
5278 (file-name (string-append name "-tex-" version "-checkout"))
5279 (sha256
5280 (base32
5281 "0hp7i8f6nbrg7irrwc8fd7n1hrzjysa84d6iyivwlc65v9p7lmd0"))))
5282 ("dvips"
5283 ,(origin
5284 (method svn-fetch)
5285 (uri (svn-reference
5286 (url (string-append "svn://www.tug.org/texlive/tags/"
5287 %texlive-tag "/Master/texmf-dist/"
5288 "/dvips/zapfding/"))
5289 (revision %texlive-revision)))
5290 (file-name (string-append name "-dvips-" version "-checkout"))
5291 (sha256
5292 (base32
5293 "1f18sc4qwxykd786zhn6szcrycqvpvfhlcim71aamxmwghakd7fa"))))
5294 ("fonts-map"
5295 ,(origin
5296 (method svn-fetch)
5297 (uri (svn-reference
5298 (url (string-append "svn://www.tug.org/texlive/tags/"
5299 %texlive-tag "/Master/texmf-dist/"
5300 "/fonts/map/dvips/zapfding/"))
5301 (revision %texlive-revision)))
5302 (file-name (string-append name "-fonts-map-" version "-checkout"))
5303 (sha256
5304 (base32
5305 "17kwxmdrgz2fb072hx57a3pidcrhbgayphx11zyld2hv9149pkyl"))))))
5306 (home-page "https://ctan.org/pkg/urw-base35")
5307 (synopsis "URW Base 35 font pack for LaTeX")
5308 (description
5309 "This package provides a drop-in replacements for the Zapfding font from
5310 Adobe's basic set.")
5311 ;; No license version specified.
5312 (license license:gpl3+)))
5313
5314 (define-public texlive-fonts-rsfs
5315 (package
5316 (name "texlive-fonts-rsfs")
5317 (version (number->string %texlive-revision))
5318 (source (origin
5319 (method svn-fetch)
5320 (uri (svn-reference
5321 (url (string-append "svn://www.tug.org/texlive/tags/"
5322 %texlive-tag "/Master/texmf-dist/"
5323 "/fonts/source/public/rsfs/"))
5324 (revision %texlive-revision)))
5325 (file-name (string-append name "-" version "-checkout"))
5326 (sha256
5327 (base32
5328 "0r12pn02r4a955prcvq0048nifh86ihlcgvw3pppqqvfngv34l5h"))))
5329 (build-system gnu-build-system)
5330 (arguments
5331 `(#:modules ((guix build gnu-build-system)
5332 (guix build utils)
5333 (srfi srfi-1)
5334 (srfi srfi-26))
5335 #:tests? #f ; no tests
5336 #:phases
5337 (modify-phases %standard-phases
5338 (delete 'configure)
5339 (replace 'build
5340 (lambda* (#:key inputs #:allow-other-keys)
5341 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
5342 ;; Tell mf where to find mf.base
5343 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
5344 ;; Tell mf where to look for source files
5345 (setenv "MFINPUTS"
5346 (string-append (getcwd) ":"
5347 mf "/share/texmf-dist/metafont/base:"
5348 (assoc-ref inputs "texlive-fonts-cm")
5349 "/share/texmf-dist/fonts/source/public/cm")))
5350 (mkdir "build")
5351 (for-each (lambda (font)
5352 (format #t "building font ~a\n" font)
5353 (invoke "mf" "-progname=mf"
5354 "-output-directory=build"
5355 (string-append "\\"
5356 "mode:=ljfour; "
5357 "mag:=1; "
5358 "batchmode; "
5359 "input " (basename font ".mf"))))
5360 (find-files "." "[0-9]+\\.mf$"))
5361 #t))
5362 (replace 'install
5363 (lambda* (#:key outputs #:allow-other-keys)
5364 (let* ((out (assoc-ref outputs "out"))
5365 (tfm (string-append
5366 out "/share/texmf-dist/fonts/tfm/public/rsfs"))
5367 (mf (string-append
5368 out "/share/texmf-dist/fonts/source/public/rsfs")))
5369 (for-each (cut install-file <> tfm)
5370 (find-files "build" "\\.*"))
5371 (for-each (cut install-file <> mf)
5372 (find-files "." "\\.mf"))
5373 #t))))))
5374 (native-inputs
5375 `(("texlive-bin" ,texlive-bin)
5376 ("texlive-metafont-base" ,texlive-metafont-base)
5377 ("texlive-fonts-cm" ,texlive-fonts-cm)))
5378 (home-page "https://www.ctan.org/pkg/rsfs")
5379 (synopsis "Ralph Smith's Formal Script font")
5380 (description
5381 "The fonts provide uppercase formal script letters for use as symbols in
5382 scientific and mathematical typesetting (in contrast to the informal script
5383 fonts such as that used for the calligraphic symbols in the TeX maths symbol
5384 font). The fonts are provided as Metafont source, and as derived Adobe Type 1
5385 format. LaTeX support, for using these fonts in mathematics, is available via
5386 one of the packages @code{calrsfs} and @code{mathrsfs}.")
5387 (license (license:fsf-free "http://mirrors.ctan.org/fonts/rsfs/README"))))
5388
5389 (define-public texlive-latex-eso-pic
5390 (package
5391 (name "texlive-latex-eso-pic")
5392 (version (number->string %texlive-revision))
5393 (source (origin
5394 (method svn-fetch)
5395 (uri (texlive-ref "latex" "eso-pic"))
5396 (file-name (string-append name "-" version "-checkout"))
5397 (sha256
5398 (base32
5399 "1xvmms28mvvfpks9x7lfya2xhh5k8jy3qnlih1mzcnf156xnb89z"))))
5400 (build-system texlive-build-system)
5401 (arguments '(#:tex-directory "latex/eso-pic"))
5402 (home-page "https://www.ctan.org/pkg/eso-pic")
5403 (synopsis "Add picture commands (or backgrounds) to every page")
5404 (description
5405 "The package adds one or more user commands to LaTeX's @code{shipout}
5406 routine, which may be used to place the output at fixed positions. The
5407 @code{grid} option may be used to find the correct places.")
5408 (license license:lppl1.3+)))
5409
5410 (define-public texlive-latex-eepic
5411 (package
5412 (name "texlive-latex-eepic")
5413 (version (number->string %texlive-revision))
5414 (source (origin
5415 (method svn-fetch)
5416 (uri (svn-reference
5417 (url (string-append "svn://www.tug.org/texlive/tags/"
5418 %texlive-tag "/Master/texmf-dist/"
5419 "/tex/latex/eepic"))
5420 (revision %texlive-revision)))
5421 (file-name (string-append name "-" version "-checkout"))
5422 (sha256
5423 (base32
5424 "1c68gvh021pvybg07apsd2xhq2ljbg80kq94wh71drdga3c2zqjw"))))
5425 (build-system trivial-build-system)
5426 (arguments
5427 `(#:modules ((guix build utils))
5428 #:builder
5429 (begin
5430 (use-modules (guix build utils))
5431 (let ((target (string-append (assoc-ref %outputs "out")
5432 "/share/texmf-dist/tex/latex/eepic")))
5433 (mkdir-p target)
5434 (copy-recursively (assoc-ref %build-inputs "source") target)
5435 #t))))
5436 (home-page "https://www.ctan.org/pkg/eepic")
5437 (synopsis "Extensions to epic and the LaTeX drawing tools")
5438 (description
5439 "Extensions to @code{epic} and the LaTeX picture drawing environment,
5440 include the drawing of lines at any slope, the drawing of circles in any
5441 radii, and the drawing of dotted and dashed lines much faster with much less
5442 TeX memory, and providing several new commands for drawing ellipses, arcs,
5443 splines, and filled circles and ellipses. The package uses @code{tpic}
5444 @code{\\special} commands.")
5445 (license license:public-domain)))
5446
5447 (define-public texlive-latex-enumitem
5448 (package
5449 (name "texlive-latex-enumitem")
5450 (version (number->string %texlive-revision))
5451 (source (origin
5452 (method svn-fetch)
5453 (uri (svn-reference
5454 (url (string-append "svn://www.tug.org/texlive/tags/"
5455 %texlive-tag "/Master/texmf-dist/"
5456 "/tex/latex/enumitem"))
5457 (revision %texlive-revision)))
5458 (file-name (string-append name "-" version "-checkout"))
5459 (sha256
5460 (base32
5461 "0q24b1bkdi9l6bw787bpggww83jh2vj8955aw2m5yccqbx4vgr5r"))))
5462 (build-system trivial-build-system)
5463 (arguments
5464 `(#:modules ((guix build utils))
5465 #:builder
5466 (begin
5467 (use-modules (guix build utils))
5468 (let ((target (string-append (assoc-ref %outputs "out")
5469 "/share/texmf-dist/tex/latex/enumitem")))
5470 (mkdir-p target)
5471 (copy-recursively (assoc-ref %build-inputs "source") target)
5472 #t))))
5473 (home-page "https://www.ctan.org/pkg/enumitem")
5474 (synopsis "Customize basic list environments")
5475 (description
5476 "This package is intended to ease customizing the three basic list
5477 environments: @code{enumerate}, @code{itemize} and @code{description}. It
5478 extends their syntax to allow an optional argument where a set of parameters
5479 in the form @code{key=value} are available, for example:
5480 @code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
5481 (license license:lppl1.3+)))
5482
5483 (define-public texlive-latex-multirow
5484 (package
5485 (name "texlive-latex-multirow")
5486 (version (number->string %texlive-revision))
5487 (source (origin
5488 (method svn-fetch)
5489 (uri (texlive-ref "latex" "multirow"))
5490 (file-name (string-append name "-" version "-checkout"))
5491 (sha256
5492 (base32
5493 "0qlxy47f1f8plgch3jqfsnrdgpyz20sz46yp33i2jwvf9hvfczf0"))))
5494 (build-system texlive-build-system)
5495 (arguments '(#:tex-directory "latex/multirow"))
5496 (home-page "https://www.ctan.org/pkg/multirow")
5497 (synopsis "Create tabular cells spanning multiple rows")
5498 (description
5499 "The package provides tools for creating tabular cells spanning multiple
5500 rows. It has a lot of flexibility, including an option for specifying an
5501 entry at the \"natural\" width of its text.")
5502 (license license:lppl1.3+)))
5503
5504 (define-public texlive-latex-overpic
5505 (package
5506 (name "texlive-latex-overpic")
5507 (version (number->string %texlive-revision))
5508 (source (origin
5509 (method svn-fetch)
5510 (uri (svn-reference
5511 (url (string-append "svn://www.tug.org/texlive/tags/"
5512 %texlive-tag "/Master/texmf-dist/"
5513 "/tex/latex/overpic"))
5514 (revision %texlive-revision)))
5515 (file-name (string-append name "-" version "-checkout"))
5516 (sha256
5517 (base32
5518 "1rpx4ibjncj5416rg19v0xjbj3z9avhfdfn2gzp8r8sz9vz25c6g"))))
5519 (build-system trivial-build-system)
5520 (arguments
5521 `(#:modules ((guix build utils))
5522 #:builder
5523 (begin
5524 (use-modules (guix build utils))
5525 (let ((target (string-append (assoc-ref %outputs "out")
5526 "/share/texmf-dist/tex/latex/overpic")))
5527 (mkdir-p target)
5528 (copy-recursively (assoc-ref %build-inputs "source") target)
5529 #t))))
5530 (home-page "https://www.ctan.org/pkg/overpic")
5531 (synopsis "Combine LaTeX commands over included graphics")
5532 (description
5533 "The @code{overpic} environment is a cross between the LaTeX
5534 @code{picture} environment and the @code{\\includegraphics} command of
5535 @code{graphicx}. The resulting picture environment has the same dimensions as
5536 the included graphic. LaTeX commands can be placed on the graphic at defined
5537 positions; a grid for orientation is available.")
5538 (license license:lppl1.0+)))
5539
5540 (define-public texlive-latex-parskip
5541 (package
5542 (name "texlive-latex-parskip")
5543 (version (number->string %texlive-revision))
5544 (source (origin
5545 (method svn-fetch)
5546 (uri (svn-reference
5547 (url (string-append "svn://www.tug.org/texlive/tags/"
5548 %texlive-tag "/Master/texmf-dist/"
5549 "/tex/latex/parskip"))
5550 (revision %texlive-revision)))
5551 (file-name (string-append name "-" version "-checkout"))
5552 (sha256
5553 (base32
5554 "14r6h9hqb0qgccxj5l1208694fx8sb8avmgzps36lsbbpszl7i7m"))))
5555 (build-system trivial-build-system)
5556 (arguments
5557 `(#:modules ((guix build utils))
5558 #:builder
5559 (begin
5560 (use-modules (guix build utils))
5561 (let ((target (string-append (assoc-ref %outputs "out")
5562 "/share/texmf-dist/tex/latex/parskip")))
5563 (mkdir-p target)
5564 (copy-recursively (assoc-ref %build-inputs "source") target)
5565 #t))))
5566 (home-page "https://www.ctan.org/pkg/parskip")
5567 (synopsis "Layout with zero \\parindent, non-zero \\parskip")
5568 (description
5569 "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
5570 that is untidy; this package (though it is no substitute for a properly
5571 designed class) helps alleviate this untidiness.")
5572 (license license:lppl)))
5573
5574 (define-public texlive-latex-pdfpages
5575 (package
5576 (name "texlive-latex-pdfpages")
5577 (version (number->string %texlive-revision))
5578 (source (origin
5579 (method svn-fetch)
5580 (uri (texlive-ref "latex" "pdfpages"))
5581 (file-name (string-append name "-" version "-checkout"))
5582 (sha256
5583 (base32
5584 "0s4izcah7im67889qz4d26pcfpasmm35sj1rw4ragkkdk3rlbbbd"))))
5585 (build-system texlive-build-system)
5586 (arguments '(#:tex-directory "latex/pdfpages"))
5587 (home-page "https://www.ctan.org/pkg/pdfpages")
5588 (synopsis "Include PDF documents in LaTeX")
5589 (description
5590 "This package simplifies the inclusion of external multi-page PDF
5591 documents in LaTeX documents. Pages may be freely selected and it is possible
5592 to put several logical pages onto each sheet of paper. Furthermore a lot of
5593 hypertext features like hyperlinks and article threads are provided. The
5594 package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to
5595 use this package to insert PostScript files, in addition to PDF files.")
5596 (license license:lppl1.3+)))
5597
5598 (define-public texlive-fonts-stmaryrd
5599 (package
5600 (name "texlive-fonts-stmaryrd")
5601 (version (number->string %texlive-revision))
5602 (source (origin
5603 (method svn-fetch)
5604 (uri (texlive-ref "fonts" "stmaryrd"))
5605 (file-name (string-append name "-" version "-checkout"))
5606 (sha256
5607 (base32
5608 "08pn4ca3vl6qm9l3wm5h5iyjsrg411kkm1yana329xwg2j14s9n6"))))
5609 (build-system texlive-build-system)
5610 (arguments
5611 '(#:tex-directory "latex/stmaryrd"
5612 #:phases
5613 (modify-phases %standard-phases
5614 (add-after 'configure 'patch-ins
5615 (lambda _
5616 (substitute* "stmaryrd.ins"
5617 (("^%% LaTeX2e.*") "\\input docstrip\n")
5618 (("fontdef\\}\\}" line)
5619 (string-append line "\n\\endbatchfile")))
5620 #t)))))
5621 (home-page "https://www.ctan.org/pkg/stmaryrd")
5622 (synopsis "St Mary Road symbols for theoretical computer science")
5623 (description
5624 "The fonts were originally distributed as Metafont sources only, but
5625 Adobe Type 1 versions are also now available. Macro support is provided for
5626 use under LaTeX; the package supports the @code{only} option (provided by the
5627 @code{somedefs} package) to restrict what is loaded, for those who don't need
5628 the whole font.")
5629 (license license:lppl)))
5630
5631 (define-public texlive-latex-subfigure
5632 (package
5633 (name "texlive-latex-subfigure")
5634 (version (number->string %texlive-revision))
5635 (source (origin
5636 (method svn-fetch)
5637 (uri (texlive-ref "latex" "subfigure"))
5638 (file-name (string-append name "-" version "-checkout"))
5639 (sha256
5640 (base32
5641 "15spcl5wb7w269qd6y596vp4yi8sa5ppcx8w4z2i9kyp02r3a0yb"))))
5642 (build-system texlive-build-system)
5643 (arguments '(#:tex-directory "latex/subfigure"))
5644 (home-page "https://www.ctan.org/pkg/subfigure")
5645 (synopsis "Figures divided into subfigures")
5646 (description
5647 "This (deprecated) package provides support for the manipulation and
5648 reference of small or \"sub\" figures and tables within a single figure or
5649 table environment. It is convenient to use this package when your subfigures
5650 are to be separately captioned, referenced, or are to be included in the
5651 List-of-Figures. A new @code{\\subfigure} command is introduced which can be
5652 used inside a figure environment for each subfigure. An optional first
5653 argument is used as the caption for that subfigure. The package is now
5654 considered obsolete: it was superseded by @code{subfig}, but users may find
5655 the more recent @code{subcaption} package more satisfactory.")
5656 (license license:lppl)))
5657
5658 (define-public texlive-latex-tabulary
5659 (package
5660 (name "texlive-latex-tabulary")
5661 (version (number->string %texlive-revision))
5662 (source (origin
5663 (method svn-fetch)
5664 (uri (texlive-ref "latex" "tabulary"))
5665 (file-name (string-append name "-" version "-checkout"))
5666 (sha256
5667 (base32
5668 "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
5669 (build-system texlive-build-system)
5670 (arguments '(#:tex-directory "latex/tabulary"))
5671 (home-page "https://www.ctan.org/pkg/tabulary")
5672 (synopsis "Tabular with variable width columns balanced")
5673 (description
5674 "The package defines a @code{tabular*}-like environment, @code{tabulary},
5675 taking a \"total width\" argument as well as the column specifications. The
5676 environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for
5677 variable width columns (@code{\\raggedright}, @code{\\centering},
5678 @code{\\raggedleft}, and normally justified). In contrast to
5679 @code{tabularx}'s @code{X} columns, the width of each column is weighted
5680 according to the natural width of the widest cell in the column.")
5681 (license license:lppl)))
5682
5683 (define-public texlive-latex-threeparttable
5684 (package
5685 (name "texlive-latex-threeparttable")
5686 (version (number->string %texlive-revision))
5687 (source (origin
5688 (method svn-fetch)
5689 (uri (svn-reference
5690 (url (string-append "svn://www.tug.org/texlive/tags/"
5691 %texlive-tag "/Master/texmf-dist/"
5692 "/tex/latex/threeparttable"))
5693 (revision %texlive-revision)))
5694 (file-name (string-append name "-" version "-checkout"))
5695 (sha256
5696 (base32
5697 "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
5698 (build-system trivial-build-system)
5699 (arguments
5700 `(#:modules ((guix build utils))
5701 #:builder
5702 (begin
5703 (use-modules (guix build utils))
5704 (let ((target (string-append (assoc-ref %outputs "out")
5705 "/share/texmf-dist/tex/latex/threeparttable")))
5706 (mkdir-p target)
5707 (copy-recursively (assoc-ref %build-inputs "source") target)
5708 #t))))
5709 (home-page "https://www.ctan.org/pkg/threeparttable")
5710 (synopsis "Tables with captions and notes all the same width")
5711 (description
5712 "This package facilitates tables with titles (captions) and notes. The
5713 title and notes are given a width equal to the body of the table (a
5714 @code{tabular} environment). By itself, a @code{threeparttable} does not
5715 float, but you can put it in a @code{table} or a @code{table*} or some other
5716 environment.")
5717 (license (license:fsf-free "file://threeparttable.sty"))))
5718
5719 (define-public texlive-fonts-txfonts
5720 (package
5721 (name "texlive-fonts-txfonts")
5722 (version (number->string %texlive-revision))
5723 (source (origin
5724 (method svn-fetch)
5725 (uri (svn-reference
5726 (url (string-append "svn://www.tug.org/texlive/tags/"
5727 %texlive-tag "/Master/texmf-dist/"
5728 "/tex/latex/txfonts"))
5729 (revision %texlive-revision)))
5730 (file-name (string-append name "-" version "-checkout"))
5731 (sha256
5732 (base32
5733 "0jl921qdphg8i7bkfprackn3xd4gmvxckc526nmzqsmahqkavgg2"))))
5734 (build-system trivial-build-system)
5735 (arguments
5736 `(#:modules ((guix build utils)
5737 (ice-9 match))
5738 #:builder
5739 (begin
5740 (use-modules (guix build utils)
5741 (ice-9 match))
5742 (let ((root (string-append (assoc-ref %outputs "out")
5743 "/share/texmf-dist/"))
5744 (pkgs '(("source" . "tex/latex/txfonts")
5745 ("txfonts-vf" . "fonts/tfm/public/txfonts")
5746 ("txfonts-afm" . "fonts/afm/public/txfonts")
5747 ("txfonts-tfm" . "fonts/tfm/public/txfonts")
5748 ("txfonts-type1" . "fonts/type1/public/txfonts")
5749 ("txfonts-enc" . "fonts/enc/dvips/txfonts")
5750 ("txfonts-map" . "fonts/map/dvips/txfonts"))))
5751 (for-each (match-lambda
5752 ((pkg . dir)
5753 (let ((target (string-append root dir)))
5754 (mkdir-p target)
5755 (copy-recursively (assoc-ref %build-inputs pkg)
5756 target))))
5757 pkgs)
5758 #t))))
5759 (native-inputs
5760 `(("txfonts-tfm"
5761 ,(origin
5762 (method svn-fetch)
5763 (uri (svn-reference
5764 (url (string-append "svn://www.tug.org/texlive/tags/"
5765 %texlive-tag "/Master/texmf-dist/"
5766 "/fonts/tfm/public/txfonts"))
5767 (revision %texlive-revision)))
5768 (file-name (string-append name "-tfm-" version "-checkout"))
5769 (sha256
5770 (base32
5771 "12ffmbrp48ap35qa3b4mi6ckif9q2vf7972jxh5dc1yzykhla2xv"))))
5772 ("txfonts-vf"
5773 ,(origin
5774 (method svn-fetch)
5775 (uri (svn-reference
5776 (url (string-append "svn://www.tug.org/texlive/tags/"
5777 %texlive-tag "/Master/texmf-dist/"
5778 "/fonts/vf/public/txfonts"))
5779 (revision %texlive-revision)))
5780 (file-name (string-append name "-vf-" version "-checkout"))
5781 (sha256
5782 (base32
5783 "04acyfdwvxpfx4l2xh2bpzdmpvwdf2pzbs7a236b0xckz2jvc1ci"))))
5784 ("txfonts-afm"
5785 ,(origin
5786 (method svn-fetch)
5787 (uri (svn-reference
5788 (url (string-append "svn://www.tug.org/texlive/tags/"
5789 %texlive-tag "/Master/texmf-dist/"
5790 "/fonts/afm/public/txfonts"))
5791 (revision %texlive-revision)))
5792 (file-name (string-append name "-afm-" version "-checkout"))
5793 (sha256
5794 (base32
5795 "1705klz51pnqzcs89s3521b84b6c89wlczflsh0vci66nl155yis"))))
5796 ("txfonts-type1"
5797 ,(origin
5798 (method svn-fetch)
5799 (uri (svn-reference
5800 (url (string-append "svn://www.tug.org/texlive/tags/"
5801 %texlive-tag "/Master/texmf-dist/"
5802 "/fonts/type1/public/txfonts"))
5803 (revision %texlive-revision)))
5804 (file-name (string-append name "-type1-" version "-checkout"))
5805 (sha256
5806 (base32
5807 "0ajwr7zb6ch3gxd0g8p2i4llhy2wr9a9saz6jq6hm6fxf4pgl5h3"))))
5808 ("txfonts-map"
5809 ,(origin
5810 (method svn-fetch)
5811 (uri (svn-reference
5812 (url (string-append "svn://www.tug.org/texlive/tags/"
5813 %texlive-tag "/Master/texmf-dist/"
5814 "/fonts/map/dvips/txfonts"))
5815 (revision %texlive-revision)))
5816 (file-name (string-append name "-map-" version "-checkout"))
5817 (sha256
5818 (base32
5819 "0kamr8a9x24jakas3v09dgv7kkpybj3i7qv4vz1iyypqr6kk1raj"))))
5820 ("txfonts-enc"
5821 ,(origin
5822 (method svn-fetch)
5823 (uri (svn-reference
5824 (url (string-append "svn://www.tug.org/texlive/tags/"
5825 %texlive-tag "/Master/texmf-dist/"
5826 "/fonts/enc/dvips/txfonts"))
5827 (revision %texlive-revision)))
5828 (file-name (string-append name "-enc-" version "-checkout"))
5829 (sha256
5830 (base32
5831 "1bal5fhw0xlhl37ayv8vlnqnsn1y82kadzfjhbgr223blspp4zsj"))))))
5832 (home-page "https://www.ctan.org/pkg/threeparttable")
5833 (synopsis "Times-like fonts in support of mathematics")
5834 (description
5835 "Txfonts supplies virtual text roman fonts using Adobe Times (or URW
5836 NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,
5837 and TS1 encodings; maths alphabets using Times/URW Nimbus; maths fonts
5838 providing all the symbols of the Computer Modern and AMS fonts, including all
5839 the Greek capital letters from CMR; and additional maths fonts of various
5840 other symbols.
5841
5842 The set is complemented by a sans-serif set of text fonts, based on
5843 Helvetica/NimbusSanL, and a monospace set.
5844
5845 All the fonts are in Type 1 format (AFM and PFB files), and are supported by
5846 TeX metrics (VF and TFM files) and macros for use with LaTeX.")
5847 ;; Any version of the GPL with font exception.
5848 (license license:gpl3+)))
5849
5850 (define-public texlive-fonts-iwona
5851 (package
5852 (name "texlive-fonts-iwona")
5853 (version "0.995b")
5854 (source (origin
5855 (method url-fetch)
5856 (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
5857 (string-map (lambda (c)
5858 (if (char=? c #\.)
5859 #\_ c))
5860 version)
5861 ".zip"))
5862 (sha256
5863 (base32
5864 "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
5865 (build-system trivial-build-system)
5866 (arguments
5867 `(#:modules ((guix build utils))
5868 #:builder
5869 (begin
5870 (use-modules (guix build utils))
5871 (let ((target (string-append (assoc-ref %outputs "out")
5872 "/share/texmf-dist/"))
5873 (unzip (string-append (assoc-ref %build-inputs "unzip")
5874 "/bin/unzip")))
5875 (invoke unzip (assoc-ref %build-inputs "source"))
5876 (mkdir-p target)
5877 (copy-recursively "iwona" target)
5878 #t))))
5879 (native-inputs
5880 `(("unzip" ,unzip)))
5881 (home-page "http://jmn.pl/en/kurier-i-iwona/")
5882 (synopsis "Sans-serif typeface for TeX")
5883 (description "Iwona is a two-element sans-serif typeface. It was created
5884 as an alternative version of the Kurier typeface, which was designed in 1975
5885 for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
5886 supervision of Roman Tomaszewski. Kurier was designed for linotype
5887 typesetting of newspapers and similar periodicals. The Iwona fonts are an
5888 alternative version of the Kurier fonts. The difference lies in the absence
5889 of ink traps which typify the Kurier font.")
5890 (license license:gfl1.0)))
5891
5892 (define-public texlive-latex-titlesec
5893 (package
5894 (name "texlive-latex-titlesec")
5895 (version (number->string %texlive-revision))
5896 (source (origin
5897 (method svn-fetch)
5898 (uri (svn-reference
5899 (url (string-append "svn://www.tug.org/texlive/tags/"
5900 %texlive-tag "/Master/texmf-dist/"
5901 "/tex/latex/titlesec"))
5902 (revision %texlive-revision)))
5903 (file-name (string-append name "-" version "-checkout"))
5904 (sha256
5905 (base32
5906 "04nmkhqx6jxcxx9a30zbcd5smxi5fd0cbp132bki7fnvhspnhg21"))))
5907 (build-system trivial-build-system)
5908 (arguments
5909 `(#:modules ((guix build utils))
5910 #:builder
5911 (begin
5912 (use-modules (guix build utils))
5913 (let ((target (string-append (assoc-ref %outputs "out")
5914 "/share/texmf-dist/tex/latex/titlesec")))
5915 (mkdir-p target)
5916 (copy-recursively (assoc-ref %build-inputs "source") target)
5917 #t))))
5918 (home-page "https://www.ctan.org/pkg/titlesec")
5919 (synopsis "Select alternative section titles")
5920 (description
5921 "This package provides an interface to sectioning commands for selection
5922 from various title styles, e.g. for marginal titles and to change the font of
5923 all headings with a single command, also providing simple one-step page
5924 styles. It also includes a package to change the page styles when there are
5925 floats in a page. You may assign headers/footers to individual floats, too.")
5926 (license license:lppl)))
5927
5928 (define-public texlive-latex-type1cm
5929 (package
5930 (name "texlive-latex-type1cm")
5931 (version (number->string %texlive-revision))
5932 (source (origin
5933 (method svn-fetch)
5934 (uri (texlive-ref "latex" "type1cm"))
5935 (file-name (string-append name "-" version "-checkout"))
5936 (sha256
5937 (base32
5938 "1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
5939 (build-system texlive-build-system)
5940 (arguments '(#:tex-directory "latex/type1cm"))
5941 (home-page "https://www.ctan.org/pkg/type1cm")
5942 (synopsis "Arbitrary size font selection in LaTeX")
5943 (description
5944 "LaTeX, by default, restricts the sizes at which you can use its default
5945 computer modern fonts, to a fixed set of discrete sizes (effectively, a set
5946 specified by Knuth). The @code{type1cm} package removes this restriction;
5947 this is particularly useful when using scalable versions of the CM
5948 fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
5949 PCTeX, etc.). In fact, since modern distributions will automatically generate
5950 any bitmap font you might need, @code{type1cm} has wider application than just
5951 those using scalable versions of the fonts. Note that the LaTeX distribution
5952 now contains a package @code{fix-cm},f which performs the task of
5953 @code{type1cm}, as well as doing the same job for T1- and TS1-encoded
5954 @code{ec} fonts.")
5955 (license license:lppl)))
5956
5957 (define-public texlive-latex-lh
5958 (package
5959 (name "texlive-latex-lh")
5960 (version (number->string %texlive-revision))
5961 (source (origin
5962 (method svn-fetch)
5963 (uri (texlive-ref "latex" "lh"))
5964 (file-name (string-append name "-" version "-checkout"))
5965 (sha256
5966 (base32
5967 "00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
5968 (build-system texlive-build-system)
5969 (arguments '(#:tex-directory "latex/lh"))
5970 (home-page "https://www.ctan.org/pkg/lh")
5971 (synopsis "Cyrillic fonts that support LaTeX standard encodings")
5972 (description
5973 "The LH fonts address the problem of the wide variety of alphabets that
5974 are written with Cyrillic-style characters. The fonts are the original basis
5975 of the set of T2* and X2 encodings that are now used when LaTeX users need to
5976 write in Cyrillic languages. Macro support in standard LaTeX encodings is
5977 offered through the latex-cyrillic and t2 bundles, and the package itself
5978 offers support for other (more traditional) encodings. The fonts, in the
5979 standard T2* and X2 encodings are available in Adobe Type 1 format, in the
5980 CM-Super family of fonts. The package also offers its own LaTeX support for
5981 OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
5982 (license license:lppl)))
5983
5984 (define-public texlive-metapost
5985 (package
5986 (name "texlive-metapost")
5987 (version (number->string %texlive-revision))
5988 (source (origin
5989 (method svn-fetch)
5990 (uri (svn-reference
5991 (url (string-append "svn://www.tug.org/texlive/tags/"
5992 %texlive-tag "/Master/texmf-dist/"
5993 "/metapost"))
5994 (revision %texlive-revision)))
5995 (file-name (string-append name "-" version "-checkout"))
5996 (sha256
5997 (base32
5998 "0sf18pc6chgy26p9bxxn44xcqhzjrfb53jxjr2y7l3jb6xllhblq"))))
5999 (build-system trivial-build-system)
6000 (arguments
6001 `(#:modules ((guix build utils))
6002 #:builder
6003 (begin
6004 (use-modules (guix build utils))
6005 (let ((target (string-append (assoc-ref %outputs "out")
6006 "/share/texmf-dist/metapost")))
6007 (mkdir-p target)
6008 (copy-recursively (assoc-ref %build-inputs "source") target)
6009 #t))))
6010 (home-page "https://www.ctan.org/pkg/metapost")
6011 (synopsis "Create scalable illustrations")
6012 (description
6013 "MetaPost uses a language based on that of Metafont to produce precise
6014 technical illustrations. Its output is scalable PostScript or SVG, rather
6015 than the bitmaps Metafont creates.")
6016 (license license:lppl)))
6017
6018 (define-public texlive-latex-acmart
6019 (package
6020 (name "texlive-latex-acmart")
6021 (version "1.60")
6022 (source (origin
6023 (method svn-fetch)
6024 (uri (texlive-ref "latex" "acmart"))
6025 (sha256
6026 (base32
6027 "0n62cs8dhcbn29y9ij1nnyigzr76yhk36kyahhqkkmvbafbys9s7"))
6028 (file-name (string-append name "-" version "-checkout"))))
6029 (build-system texlive-build-system)
6030 (arguments '(#:tex-directory "latex/acmart"))
6031 (home-page "https://www.ctan.org/pkg/acmart")
6032 (synopsis "Class for typesetting publications of ACM")
6033 (description
6034 "This package provides a class for typesetting publications of the
6035 Association for Computing Machinery (ACM).")
6036 (license license:lppl1.3+)))
6037
6038 (define-public texlive-latex-varwidth
6039 (package
6040 (name "texlive-latex-varwidth")
6041 (version (number->string %texlive-revision))
6042 (source (origin
6043 (method svn-fetch)
6044 (uri (svn-reference
6045 (url (string-append "svn://www.tug.org/texlive/tags/"
6046 %texlive-tag "/Master/texmf-dist/"
6047 "/tex/latex/varwidth"))
6048 (revision %texlive-revision)))
6049 (file-name (string-append name "-" version "-checkout"))
6050 (sha256
6051 (base32
6052 "1bmz9ap0ffyg7qry2xi7lki06qx4809w028xvk88cl66h7p46g52"))))
6053 (build-system trivial-build-system)
6054 (arguments
6055 `(#:modules ((guix build utils))
6056 #:builder
6057 (begin
6058 (use-modules (guix build utils))
6059 (let ((target (string-append (assoc-ref %outputs "out")
6060 "/share/texmf-dist/tex/latex/varwidth")))
6061 (mkdir-p target)
6062 (copy-recursively (assoc-ref %build-inputs "source") target)
6063 #t))))
6064 (home-page "https://www.ctan.org/pkg/varwidth")
6065 (synopsis "Variable-width minipage")
6066 (description
6067 "The @code{varwidth} environment is superficially similar to
6068 @code{minipage}, but the specified width is just a maximum value — the box may
6069 get a narrower “natural” width.")
6070 (license license:lppl)))
6071
6072 (define-public texlive-latex-wasysym
6073 (package
6074 (name "texlive-latex-wasysym")
6075 (version (number->string %texlive-revision))
6076 (source (origin
6077 (method svn-fetch)
6078 (uri (texlive-ref "latex" "wasysym"))
6079 (file-name (string-append name "-" version "-checkout"))
6080 (sha256
6081 (base32
6082 "1sgwbfwjjf70g54hh93gsd9jp9nm67w6n74x9d72a56n07jbk5hv"))))
6083 (build-system texlive-build-system)
6084 (arguments '(#:tex-directory "latex/wasysym"))
6085 (home-page "https://www.ctan.org/pkg/wasysym")
6086 (synopsis "LaTeX support file to use the WASY2 fonts")
6087 (description
6088 "The wasy2WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs
6089 like male and female symbols and astronomical symbols, as well as the complete
6090 lasy font set and other odds and ends. The wasysym package implements an easy
6091 to use interface for these symbols.")
6092 (license license:lppl)))
6093
6094 (define-public texlive-latex-wrapfig
6095 (package
6096 (name "texlive-latex-wrapfig")
6097 (version (number->string %texlive-revision))
6098 (source (origin
6099 (method svn-fetch)
6100 (uri (svn-reference
6101 (url (string-append "svn://www.tug.org/texlive/tags/"
6102 %texlive-tag "/Master/texmf-dist/"
6103 "/tex/latex/wrapfig"))
6104 (revision %texlive-revision)))
6105 (file-name (string-append name "-" version "-checkout"))
6106 (sha256
6107 (base32
6108 "16xpyl0csmmwndz1xhzqfg9l0zcsnqxslsixsqkwd4zsvfj30sv4"))))
6109 (build-system trivial-build-system)
6110 (arguments
6111 `(#:modules ((guix build utils))
6112 #:builder
6113 (begin
6114 (use-modules (guix build utils))
6115 (let ((target (string-append (assoc-ref %outputs "out")
6116 "/share/texmf-dist/tex/latex/wrapfig")))
6117 (mkdir-p target)
6118 (copy-recursively (assoc-ref %build-inputs "source") target)
6119 #t))))
6120 (home-page "https://www.ctan.org/pkg/wrapfig")
6121 (synopsis "Produces figures which text can flow around")
6122 (description
6123 "This package allows figures or tables to have text wrapped around them.
6124 It does not work in combination with list environments, but can be used in a
6125 @code{parbox} or @code{minipage}, and in two-column format.")
6126 (license license:lppl)))
6127
6128 (define-public texlive-latex-ucs
6129 (package
6130 (name "texlive-latex-ucs")
6131 (version (number->string %texlive-revision))
6132 (source (origin
6133 (method svn-fetch)
6134 (uri (svn-reference
6135 (url (string-append "svn://www.tug.org/texlive/tags/"
6136 %texlive-tag "/Master/texmf-dist/"
6137 "/tex/latex/ucs"))
6138 (revision %texlive-revision)))
6139 (file-name (string-append name "-" version "-checkout"))
6140 (sha256
6141 (base32
6142 "0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37"))))
6143 (build-system trivial-build-system)
6144 (arguments
6145 `(#:modules ((guix build utils))
6146 #:builder
6147 (begin
6148 (use-modules (guix build utils))
6149 (let ((target (string-append (assoc-ref %outputs "out")
6150 "/share/texmf-dist/tex/latex/ucs")))
6151 (mkdir-p target)
6152 (copy-recursively (assoc-ref %build-inputs "source") target)
6153 #t))))
6154 (home-page "https://www.ctan.org/pkg/ucs")
6155 (synopsis "Extended UTF-8 input encoding support for LaTeX")
6156 (description
6157 "The bundle provides the @code{ucs} package, and @code{utf8x.def},
6158 together with a large number of support files. The @code{utf8x.def}
6159 definition file for use with @code{inputenc} covers a wider range of Unicode
6160 characters than does @code{utf8.def} in the LaTeX distribution. The package
6161 provides facilities for efficient use of its large sets of Unicode characters.
6162 Glyph production may be controlled by various options, which permits use of
6163 non-ASCII characters when coding mathematical formulae. Note that the bundle
6164 previously had an alias “unicode”; that alias has now been withdrawn, and no
6165 package of that name now exists.")
6166 (license license:lppl1.3+)))
6167
6168 (define-public texlive-latex-preview
6169 (package
6170 (name "texlive-latex-preview")
6171 (version (number->string %texlive-revision))
6172 (source (origin
6173 (method svn-fetch)
6174 (uri (texlive-ref "latex" "preview"))
6175 (file-name (string-append name "-" version "-checkout"))
6176 (sha256
6177 (base32
6178 "1hpsk4yp08qvbl43kqiv0hhwxv3gcqqxcpahyv6ch2b38pbj4bh6"))))
6179 (build-system texlive-build-system)
6180 (arguments
6181 '(#:tex-directory "latex/preview"
6182 #:phases
6183 (modify-phases %standard-phases
6184 (add-after 'unpack 'remove-generated-file
6185 (lambda _
6186 (delete-file "preview.drv")
6187 #t)))))
6188 (home-page "https://www.ctan.org/pkg/preview")
6189 (synopsis "Extract bits of a LaTeX source for output")
6190 (description
6191 "The main purpose of the preview package is the extraction of selected
6192 elements from a LaTeX source, like formulas or graphics, into separate
6193 pages of a DVI file. A flexible and convenient interface allows it to
6194 specify what commands and constructs should be extracted. This works
6195 with DVI files postprocessed by either Dvips and Ghostscript or
6196 dvipng, but it also works when you are using PDFTeX for generating PDF
6197 files.")
6198 (license license:gpl3+)))
6199
6200 (define-public texlive-latex-acronym
6201 (package
6202 (name "texlive-latex-acronym")
6203 (version (number->string %texlive-revision))
6204 (source (origin
6205 (method svn-fetch)
6206 (uri (texlive-ref "latex" "acronym"))
6207 (file-name (string-append name "-" version "-checkout"))
6208 (sha256
6209 (base32
6210 "0jmasg40bk53zdd2jc8nc18jvdai3p2wmamy7hwli8gls4nf25qp"))))
6211 (build-system texlive-build-system)
6212 (arguments '(#:tex-directory "latex/acronym"))
6213 (home-page "https://www.ctan.org/pkg/acronym")
6214 (synopsis "Expand acronyms at least once")
6215 (description
6216 "This package ensures that all acronyms used in the text are spelled out
6217 in full at least once. It also provides an environment to build a list of
6218 acronyms used. The package is compatible with PDF bookmarks. The package
6219 requires the suffix package, which in turn requires that it runs under
6220 e-TeX.")
6221 (license license:lppl1.3+)))
6222
6223 (define-public texlive-generic-pdftex
6224 (package
6225 (name "texlive-generic-pdftex")
6226 (version (number->string %texlive-revision))
6227 (source (origin
6228 (method svn-fetch)
6229 (uri (svn-reference
6230 (url (string-append "svn://www.tug.org/texlive/tags/"
6231 %texlive-tag "/Master/texmf-dist/"
6232 "/tex/generic/pdftex"))
6233 (revision %texlive-revision)))
6234 (file-name (string-append name "-" version "-checkout"))
6235 (sha256
6236 (base32
6237 "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
6238 (build-system trivial-build-system)
6239 (arguments
6240 `(#:modules ((guix build utils))
6241 #:builder
6242 (begin
6243 (use-modules (guix build utils))
6244 (let ((target (string-append (assoc-ref %outputs "out")
6245 "/share/texmf-dist/tex/generic/pdftex"))
6246 (target-map (string-append (assoc-ref %outputs "out")
6247 "/share/texmf-dist/fonts/map/pdftex")))
6248 (mkdir-p target)
6249 (copy-recursively (assoc-ref %build-inputs "source") target)
6250 (mkdir-p target-map)
6251 (copy-recursively (assoc-ref %build-inputs "pdftex-map") target-map)
6252 #t))))
6253 (native-inputs
6254 `(("pdftex-map"
6255 ,(origin
6256 (method svn-fetch)
6257 (uri (svn-reference
6258 (url (string-append "svn://www.tug.org/texlive/tags/"
6259 %texlive-tag "/Master/texmf-dist/"
6260 "/fonts/map/pdftex"))
6261 (revision %texlive-revision)))
6262 (file-name (string-append name "-map-" version "-checkout"))
6263 (sha256
6264 (base32
6265 "18jvcm0vwpg6wwzijvnb92xx78la45kkh71k6l44425krp2vnwm0"))))))
6266 (home-page "https://www.ctan.org/pkg/pdftex")
6267 (synopsis "TeX extension for direct creation of PDF")
6268 (description
6269 "This package provides an extension of TeX which can be configured to
6270 directly generate PDF documents instead of DVI.")
6271 (license license:gpl2+)))
6272
6273 (define texlive-texmf
6274 (package
6275 (name "texlive-texmf")
6276 (version "20180414")
6277 (source texlive-texmf-src)
6278 (build-system gnu-build-system)
6279 (inputs
6280 `(("texlive-bin" ,texlive-bin)
6281 ("lua" ,lua)
6282 ("perl" ,perl)
6283 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
6284 ("ruby" ,ruby)
6285 ("tcsh" ,tcsh)))
6286 (arguments
6287 `(#:modules ((guix build gnu-build-system)
6288 (guix build utils)
6289 (srfi srfi-26))
6290
6291 ;; This package takes 4 GiB, which we can't afford to distribute from
6292 ;; our servers.
6293 #:substitutable? #f
6294
6295 #:phases
6296 (modify-phases (map (cut assq <> %standard-phases)
6297 '(set-paths unpack patch-source-shebangs))
6298 (add-after 'unpack 'unset-environment-variables
6299 (lambda _
6300 (unsetenv "TEXMF")
6301 (unsetenv "TEXMFCNF")
6302 #t))
6303 (add-after 'patch-source-shebangs 'install
6304 (lambda* (#:key outputs #:allow-other-keys)
6305 (let ((share (string-append (assoc-ref outputs "out") "/share")))
6306 (mkdir-p share)
6307 (invoke "mv" "texmf-dist" share))))
6308 (add-after 'install 'texmf-config
6309 (lambda* (#:key inputs outputs #:allow-other-keys)
6310 (let* ((out (assoc-ref outputs "out"))
6311 (share (string-append out "/share"))
6312 (texmfroot (string-append share "/texmf-dist/web2c"))
6313 (texmfcnf (string-append texmfroot "/texmf.cnf"))
6314 (texlive-bin (assoc-ref inputs "texlive-bin"))
6315 (texbin (string-append texlive-bin "/bin"))
6316 (tlpkg (string-append texlive-bin "/share/tlpkg")))
6317 ;; Register SHARE as TEXMFROOT in texmf.cnf.
6318 (substitute* texmfcnf
6319 (("TEXMFROOT = \\$SELFAUTOPARENT")
6320 (string-append "TEXMFROOT = " share))
6321 (("TEXMFLOCAL = \\$SELFAUTOGRANDPARENT/texmf-local")
6322 "TEXMFLOCAL = $SELFAUTODIR/share/texmf-local")
6323 (("!!\\$TEXMFLOCAL") "$TEXMFLOCAL"))
6324 ;; Register paths in texmfcnf.lua, needed for context.
6325 (substitute* (string-append texmfroot "/texmfcnf.lua")
6326 (("selfautodir:") out)
6327 (("selfautoparent:") (string-append share "/")))
6328 ;; Set path to TeXLive Perl modules
6329 (setenv "PERL5LIB"
6330 (string-append (getenv "PERL5LIB") ":" tlpkg))
6331 ;; Configure the texmf-dist tree; inspired from
6332 ;; http://slackbuilds.org/repository/13.37/office/texlive/
6333 (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
6334 (setenv "TEXMFCNF" texmfroot)
6335 (invoke "updmap-sys" "--nohash" "--syncwithtrees")
6336 (invoke "mktexlsr")
6337 (invoke "fmtutil-sys" "--all")))))))
6338 (properties `((max-silent-time . 9600))) ; don't time out while grafting
6339 (synopsis "TeX Live, a package of the TeX typesetting system")
6340 (description
6341 "TeX Live provides a comprehensive TeX document production system.
6342 It includes all the major TeX-related programs, macro packages, and fonts
6343 that are free software, including support for many languages around the
6344 world.
6345
6346 This package contains the complete tree of texmf-dist data.")
6347 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6348 (home-page "https://www.tug.org/texlive/")))
6349
6350 (define-public texlive
6351 (package
6352 (name "texlive")
6353 (version "20180414")
6354 (source #f)
6355 (build-system trivial-build-system)
6356 (inputs `(("bash" ,bash) ; for wrap-program
6357 ("texlive-bin" ,texlive-bin)
6358 ("texlive-texmf" ,texlive-texmf)))
6359 (native-search-paths
6360 (list (search-path-specification
6361 (variable "TEXMFLOCAL")
6362 (files '("share/texmf-local")))))
6363 (arguments
6364 `(#:modules ((guix build utils))
6365 #:builder
6366 ;; Build the union of texlive-bin and texlive-texmf, but take the
6367 ;; conflicting subdirectory share/texmf-dist from texlive-texmf.
6368 (begin
6369 (use-modules (guix build utils))
6370 (let ((out (assoc-ref %outputs "out"))
6371 (bin (assoc-ref %build-inputs "texlive-bin"))
6372 (texmf (assoc-ref %build-inputs "texlive-texmf"))
6373 (bash (assoc-ref %build-inputs "bash")))
6374 (mkdir out)
6375 (with-directory-excursion out
6376 (for-each
6377 (lambda (name)
6378 (symlink (string-append bin "/" name) name))
6379 '("include" "lib"))
6380 (mkdir "bin")
6381 (with-directory-excursion "bin"
6382 (setenv "PATH" (string-append bash "/bin"))
6383 (for-each
6384 (lambda (name)
6385 (symlink name (basename name))
6386 (wrap-program
6387 (basename name)
6388 `("TEXMFCNF" =
6389 (,(string-append texmf "/share/texmf-dist/web2c")))))
6390 (find-files (string-append bin "/bin/") "")))
6391 (mkdir "share")
6392 (with-directory-excursion "share"
6393 (for-each
6394 (lambda (name)
6395 (symlink (string-append bin "/share/" name) name))
6396 '("info" "man" "tlpkg"))
6397 (for-each
6398 (lambda (name)
6399 (symlink (string-append texmf "/share/" name) name))
6400 '("texmf-dist" "texmf-var"))))
6401 #t))))
6402 (synopsis "TeX Live, a package of the TeX typesetting system")
6403 (description
6404 "TeX Live provides a comprehensive TeX document production system.
6405 It includes all the major TeX-related programs, macro packages, and fonts
6406 that are free software, including support for many languages around the
6407 world.
6408
6409 This package contains the complete TeX Live distribution.")
6410 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6411 (home-page "https://www.tug.org/texlive/")))
6412
6413 (define-public perl-text-bibtex
6414 (package
6415 (name "perl-text-bibtex")
6416 (version "0.85")
6417 (source
6418 (origin
6419 (method url-fetch)
6420 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/Text-BibTeX-"
6421 version ".tar.gz"))
6422 (sha256
6423 (base32
6424 "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h"))))
6425 (build-system perl-build-system)
6426 (arguments
6427 `(#:phases
6428 (modify-phases %standard-phases
6429 (add-after 'unpack 'add-output-directory-to-rpath
6430 (lambda* (#:key outputs #:allow-other-keys)
6431 (substitute* "inc/MyBuilder.pm"
6432 (("-Lbtparse" line)
6433 (string-append "-Wl,-rpath="
6434 (assoc-ref outputs "out") "/lib " line)))
6435 #t))
6436 (add-after 'unpack 'install-libraries-to-/lib
6437 (lambda* (#:key outputs #:allow-other-keys)
6438 (substitute* "Build.PL"
6439 (("lib64") "lib"))
6440 #t)))))
6441 (native-inputs
6442 `(("perl-capture-tiny" ,perl-capture-tiny)
6443 ("perl-config-autoconf" ,perl-config-autoconf)
6444 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6445 ("perl-module-build" ,perl-module-build)))
6446 (home-page "https://metacpan.org/release/Text-BibTeX")
6447 (synopsis "Interface to read and parse BibTeX files")
6448 (description "@code{Text::BibTeX} is a Perl library for reading, parsing,
6449 and processing BibTeX files. @code{Text::BibTeX} gives you access to the data
6450 at many different levels: you may work with BibTeX entries as simple field to
6451 string mappings, or get at the original form of the data as a list of simple
6452 values (strings, macros, or numbers) pasted together.")
6453 (license license:perl-license)))
6454
6455 (define-public biber
6456 (package
6457 (name "biber")
6458 (version "2.12")
6459 (source (origin
6460 (method git-fetch)
6461 (uri (git-reference
6462 (url "https://github.com/plk/biber/")
6463 (commit (string-append "v" version))))
6464 (file-name (git-file-name name version))
6465 ;; TODO: Patch awaiting inclusion upstream (see:
6466 ;; https://github.com/plk/biber/issues/239).
6467 (patches (search-patches "biber-fix-encoding-write.patch"))
6468 (sha256
6469 (base32
6470 "1g1hi6zvf2hmrjly1sidjaxy5440gfqm4p7p3n7kayshnjsmlskx"))))
6471 (build-system perl-build-system)
6472 (arguments
6473 `(#:phases
6474 (modify-phases %standard-phases
6475 (add-after 'install 'wrap-programs
6476 (lambda* (#:key outputs #:allow-other-keys)
6477 (let* ((out (assoc-ref outputs "out"))
6478 (perl5lib (getenv "PERL5LIB")))
6479 (wrap-program (string-append out "/bin/biber")
6480 `("PERL5LIB" ":" prefix
6481 (,(string-append perl5lib ":" out
6482 "/lib/perl5/site_perl")))))
6483 #t)))))
6484 (inputs
6485 `(("perl-autovivification" ,perl-autovivification)
6486 ("perl-class-accessor" ,perl-class-accessor)
6487 ("perl-data-dump" ,perl-data-dump)
6488 ("perl-data-compare" ,perl-data-compare)
6489 ("perl-data-uniqid" ,perl-data-uniqid)
6490 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
6491 ("perl-datetime-calendar-julian" ,perl-datetime-calendar-julian)
6492 ("perl-file-slurper" ,perl-file-slurper)
6493 ("perl-ipc-cmd" ,perl-ipc-cmd)
6494 ("perl-ipc-run3" ,perl-ipc-run3)
6495 ("perl-list-allutils" ,perl-list-allutils)
6496 ("perl-list-moreutils" ,perl-list-moreutils)
6497 ("perl-mozilla-ca" ,perl-mozilla-ca)
6498 ("perl-regexp-common" ,perl-regexp-common)
6499 ("perl-log-log4perl" ,perl-log-log4perl)
6500 ;; We cannot use perl-unicode-collate here, because otherwise the
6501 ;; hardcoded hashes in the tests would differ. See
6502 ;; https://mail-archive.com/debian-bugs-dist@lists.debian.org/msg1469249.html
6503 ;;("perl-unicode-collate" ,perl-unicode-collate)
6504 ("perl-unicode-normalize" ,perl-unicode-normalize)
6505 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
6506 ("perl-encode-eucjpascii" ,perl-encode-eucjpascii)
6507 ("perl-encode-jis2k" ,perl-encode-jis2k)
6508 ("perl-encode-hanextra" ,perl-encode-hanextra)
6509 ("perl-xml-libxml" ,perl-xml-libxml)
6510 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)
6511 ("perl-xml-libxslt" ,perl-xml-libxslt)
6512 ("perl-xml-writer" ,perl-xml-writer)
6513 ("perl-sort-key" ,perl-sort-key)
6514 ("perl-text-csv" ,perl-text-csv)
6515 ("perl-text-csv-xs" ,perl-text-csv-xs)
6516 ("perl-text-roman" ,perl-text-roman)
6517 ("perl-uri" ,perl-uri)
6518 ("perl-text-bibtex" ,perl-text-bibtex)
6519 ("perl-libwww" ,perl-libwww)
6520 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
6521 ("perl-business-isbn" ,perl-business-isbn)
6522 ("perl-business-issn" ,perl-business-issn)
6523 ("perl-business-ismn" ,perl-business-ismn)
6524 ("perl-lingua-translit" ,perl-lingua-translit)))
6525 (native-inputs
6526 `(("perl-config-autoconf" ,perl-config-autoconf)
6527 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6528 ("perl-module-build" ,perl-module-build)
6529 ;; for tests
6530 ("perl-file-which" ,perl-file-which)
6531 ("perl-test-more" ,perl-test-most) ; FIXME: "more" would be sufficient
6532 ("perl-test-differences" ,perl-test-differences)))
6533 (home-page "http://biblatex-biber.sourceforge.net/")
6534 (synopsis "Backend for the BibLaTeX citation management tool")
6535 (description "Biber is a BibTeX replacement for users of biblatex. Among
6536 other things it comes with full Unicode support.")
6537 (license license:artistic2.0)))
6538
6539 (define-public rubber
6540 (package
6541 (name "rubber")
6542 (version "1.1")
6543 (source (origin
6544 (method url-fetch)
6545 (uri (list (string-append "https://launchpad.net/rubber/trunk/"
6546 version "/+download/rubber-"
6547 version ".tar.gz")
6548 (string-append "http://ebeffara.free.fr/pub/rubber-"
6549 version ".tar.gz")))
6550 (sha256
6551 (base32
6552 "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq"))))
6553 (build-system gnu-build-system)
6554 (arguments '(#:tests? #f)) ; no `check' target
6555 (inputs `(("texinfo" ,texinfo)
6556 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
6557 ("which" ,which)))
6558 (home-page "https://launchpad.net/rubber")
6559 (synopsis "Wrapper for LaTeX and friends")
6560 (description
6561 "Rubber is a program whose purpose is to handle all tasks related to the
6562 compilation of LaTeX documents. This includes compiling the document itself,
6563 of course, enough times so that all references are defined, and running BibTeX
6564 to manage bibliographic references. Automatic execution of dvips to produce
6565 PostScript documents is also included, as well as usage of pdfLaTeX to produce
6566 PDF documents.")
6567 (license license:gpl2+)))
6568
6569 (define-public texmaker
6570 (package
6571 (name "texmaker")
6572 (version "5.0.3")
6573 (source (origin
6574 (method url-fetch)
6575 (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
6576 version ".tar.bz2"))
6577 (sha256
6578 (base32
6579 "0vrj9w5lk3vf6138n5bz8phmy3xp5kv4dq1rgirghcf4hbxdyx30"))))
6580 (build-system gnu-build-system)
6581 (arguments
6582 `(#:phases
6583 (modify-phases %standard-phases
6584 ;; Qt has its own configuration utility.
6585 (replace 'configure
6586 (lambda* (#:key outputs #:allow-other-keys)
6587 (let ((out (assoc-ref outputs "out")))
6588 (invoke "qmake"
6589 (string-append "PREFIX=" out)
6590 (string-append "DESKTOPDIR=" out "/share/applications")
6591 (string-append "ICONDIR=" out "/share/pixmaps")
6592 (string-append "METAINFODIR=" out "/share/metainfo")
6593 "texmaker.pro")))))))
6594 (inputs
6595 `(("poppler-qt5" ,poppler-qt5)
6596 ("qtbase" ,qtbase)
6597 ("qtscript" ,qtscript)
6598 ("qtwebkit" ,qtwebkit)
6599 ("zlib" ,zlib)))
6600 (native-inputs
6601 `(("pkg-config" ,pkg-config)))
6602 (home-page "http://www.xm1math.net/texmaker/")
6603 (synopsis "LaTeX editor")
6604 (description "Texmaker is a program that integrates many tools needed to
6605 develop documents with LaTeX, in a single application.")
6606 (license license:gpl2+)))
6607
6608 (define-public teximpatient
6609 (package
6610 (name "teximpatient")
6611 (version "2.4")
6612 (source (origin
6613 (method url-fetch/tarbomb)
6614 (uri (string-append "mirror://gnu/" name "/" name "-"
6615 version ".tar.gz"))
6616 (sha256
6617 (base32
6618 "0h56w22d99dh4fgld4ssik8ggnmhmrrbnrn1lnxi1zr0miphn1sd"))))
6619 (build-system gnu-build-system)
6620 (arguments
6621 `(#:tests? #f ; there are none
6622 #:phases
6623 (modify-phases %standard-phases
6624 (add-after 'unpack 'fix-packaging-error
6625 (lambda* (#:key inputs #:allow-other-keys)
6626 ;; This file should have been part of the tarball.
6627 (install-file (car
6628 (find-files
6629 (assoc-ref inputs "automake")
6630 "^install-sh$"))
6631 ".")
6632 ;; Remove generated file.
6633 (delete-file "book.pdf")
6634 #t)))))
6635 (native-inputs
6636 `(("texlive" ,(texlive-union (list texlive-latex-amsfonts
6637 texlive-fonts-amsfonts
6638 texlive-fonts-adobe-palatino
6639 texlive-fonts-adobe-zapfding
6640 texlive-fonts-knuth-lib
6641 texlive-fonts-mflogo-font
6642 texlive-generic-pdftex)))
6643 ("automake" ,automake)))
6644 (home-page "https://www.gnu.org/software/teximpatient/")
6645 (synopsis "Book on TeX, plain TeX and Eplain")
6646 (description "@i{TeX for the Impatient} is a ~350 page book on TeX,
6647 plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,
6648 and Karl Berry.")
6649 (license license:fdl1.3+)))
6650
6651 (define-public lyx
6652 (package
6653 (name "lyx")
6654 (version "2.3.2-2")
6655 (source (origin
6656 (method url-fetch)
6657 (uri (string-append "http://ftp.lyx.org/pub/lyx/stable/"
6658 (version-major+minor version) ".x/"
6659 name "-" version ".tar.gz"))
6660 (sha256
6661 (base32
6662 "0vr0qwis6rhind6azfa270hqxci7rj8qb1kk5x6lm80mc34nvrqi"))
6663 (modules '((guix build utils)))
6664 (snippet
6665 '(begin
6666 (delete-file-recursively "3rdparty")
6667 #t))))
6668 (build-system cmake-build-system)
6669 (arguments
6670 `(#:configure-flags `("-DLYX_USE_QT=QT5"
6671 "-DLYX_EXTERNAL_BOOST=1"
6672 "-DLYX_INSTALL=1"
6673 "-DLYX_RELEASE=1"
6674 ,(string-append "-DLYX_INSTALL_PREFIX="
6675 (assoc-ref %outputs "out")
6676 ;; Exact name and level is necessary.
6677 "/lyx" ,(version-major+minor version)))
6678 #:phases
6679 (modify-phases %standard-phases
6680 ;; See ;; https://www.lyx.org/trac/changeset/3a123b90af838b08680471d87170c38e56787df9/lyxgit
6681 (add-after 'unpack 'fix-compilation-with-boost-1.69
6682 (lambda _
6683 (substitute* "src/support/FileName.cpp"
6684 (("^template struct boost::detail::crc_table_t.*") ""))
6685 #t))
6686 (add-after 'unpack 'patch-python
6687 (lambda* (#:key inputs #:allow-other-keys)
6688 (substitute* '("src/support/os.cpp")
6689 (("\"python ")
6690 (string-append "\""
6691 (assoc-ref inputs "python")
6692 "/bin/python ")))
6693 #t))
6694 (add-after 'patch-python 'patch-desktop-file
6695 (lambda* (#:key outputs #:allow-other-keys)
6696 (substitute* "lib/lyx.desktop.in"
6697 (("Exec=")
6698 (string-append "Exec="
6699 (assoc-ref outputs "out")
6700 "/")))
6701 #t))
6702 (add-before 'check 'setenv-check
6703 (lambda _
6704 ;; Create missing file that would cause tests to fail.
6705 (with-output-to-file (string-append "../lyx-"
6706 ,version
6707 "/src/tests/check_layout.cmake")
6708 (const #t))
6709 (setenv (string-append "LYX_DIR_"
6710 (string-join
6711 (string-split
6712 ,(version-major+minor version) #\-)) "x")
6713 (string-append (getcwd) "/../lyx-" ,version "/lib"))
6714 #t))
6715 (add-after 'install 'install-symlinks
6716 (lambda* (#:key outputs #:allow-other-keys)
6717 (let ((out (assoc-ref outputs "out")))
6718 (mkdir-p (string-append out "/bin"))
6719 (symlink (string-append "../lyx" ,(version-major+minor version)
6720 "/bin/lyx" ,(version-major+minor version))
6721 (string-append out "/bin/lyx" ,(version-major+minor version)))
6722 #t))))))
6723 (inputs
6724 `(("boost" ,boost)
6725 ("hunspell" ,hunspell) ; Note: Could also use aspell instead.
6726 ("libx11" ,libx11)
6727 ("mythes" ,mythes)
6728 ("python" ,python-2)
6729 ("qtbase" ,qtbase)
6730 ("qtsvg" ,qtsvg)
6731 ("zlib" ,zlib)))
6732 (propagated-inputs
6733 `(("texlive" ,(texlive-union (list texlive-fonts-ec)))))
6734 ;; FIXME: Python 3.7.0 cannot be used because the test infrastructure
6735 ;; "requires a bytes-like object, not 'str'". This may be fixed with
6736 ;; upgrades to Python.
6737 (native-inputs
6738 `(("python" ,python-2)
6739 ("pkg-config" ,pkg-config)
6740 ("bc" ,bc)))
6741 (home-page "https://www.lyx.org/")
6742 (synopsis "Document preparation system with GUI")
6743 (description "LyX is a document preparation system. It excels at letting
6744 you create complex technical and scientific articles with mathematics,
6745 cross-references, bibliographies, indexes, etc. It is very good for working
6746 with documents of any length in which the usual processing abilities are
6747 required: automatic sectioning and pagination, spell checking and so forth.")
6748 (license license:gpl2+)))
6749
6750 (define-public texlive-latex-media9
6751 (package
6752 (name "texlive-latex-media9")
6753 (version (number->string %texlive-revision))
6754 (source (origin
6755 (method svn-fetch)
6756 (uri (svn-reference
6757 (url (string-append "svn://www.tug.org/texlive/tags/"
6758 %texlive-tag "/Master/texmf-dist/"
6759 "/tex/latex/media9"))
6760 (revision %texlive-revision)))
6761 (file-name (string-append name "-" version "-checkout"))
6762 (sha256
6763 (base32
6764 "0lhb2h5hxjq9alpk4r3gvg21pwyifs4ah6hqzp92k55mkp1xv73j"))))
6765 (build-system trivial-build-system)
6766 (arguments
6767 `(#:modules ((guix build utils))
6768 #:builder
6769 (begin
6770 (use-modules (guix build utils))
6771 (let ((target (string-append (assoc-ref %outputs "out")
6772 "/share/texmf-dist/tex/latex/media9")))
6773 (mkdir-p target)
6774 (copy-recursively (assoc-ref %build-inputs "source") target)
6775 #t))))
6776 (home-page "https://www.ctan.org/pkg/media9")
6777 (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
6778 (description
6779 "The package provides an interface to embed interactive Flash (SWF) and 3D
6780 objects (Adobe U3D & PRC), as well as video and sound files or streams in the
6781 popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
6782 compatibility. Playback of multimedia files uses the built-in Flash Player of
6783 Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player
6784 supports the efficient H.264 codec for video compression.
6785
6786 The package is based on the RichMedia Annotation, an Adobe addition to the PDF
6787 specification. It replaces the now obsolete @code{movie15} package.")
6788 (license license:lppl)))
6789
6790 (define-public texlive-latex-ocgx2
6791 (package
6792 (name "texlive-latex-ocgx2")
6793 (version (number->string %texlive-revision))
6794 (source (origin
6795 (method svn-fetch)
6796 (uri (svn-reference
6797 (url (string-append "svn://www.tug.org/texlive/tags/"
6798 %texlive-tag "/Master/texmf-dist/"
6799 "/tex/latex/ocgx2"))
6800 (revision %texlive-revision)))
6801 (file-name (string-append name "-" version "-checkout"))
6802 (sha256
6803 (base32
6804 "0zp00jg058djx8xp0xqwas92y3j97clkyd8z6pqr890yqy06myqb"))))
6805 (build-system trivial-build-system)
6806 (arguments
6807 `(#:modules ((guix build utils))
6808 #:builder
6809 (begin
6810 (use-modules (guix build utils))
6811 (let ((target (string-append (assoc-ref %outputs "out")
6812 "/share/texmf-dist/tex/latex/ogcx2")))
6813 (mkdir-p target)
6814 (copy-recursively (assoc-ref %build-inputs "source") target)
6815 #t))))
6816 (home-page "https://www.ctan.org/pkg/ocgx2")
6817 (synopsis "Provide OCG (Optional Content Groups) support within a PDF document")
6818 (description
6819 "This package provides OCG (Optional Content Groups) support within a PDF
6820 document.
6821
6822 It re-implements the functionality of the @code{ocg}, @code{ocgx}, and
6823 @code{ocg-p} packages and adds support for all known engines and back-ends
6824 including:
6825
6826 @itemize
6827 @item LaTeX → dvips → @code{ps2pdf}/Distiller
6828 @item (Xe)LaTeX(x) → @code{dvipdfmx}
6829 @item pdfLaTeX and LuaLaTeX .
6830 @end itemize
6831
6832 It also ensures compatibility with the @code{media9} and @code{animate} packages.")
6833 (license license:lppl)))
6834
6835 (define-public texlive-latex-ms
6836 (package
6837 (name "texlive-latex-ms")
6838 (version (number->string %texlive-revision))
6839 (source (origin
6840 (method svn-fetch)
6841 (uri (texlive-ref "latex" "ms"))
6842 (file-name (string-append name "-" version "-checkout"))
6843 (sha256
6844 (base32
6845 "0m4wx3yjb5al1qsv995z8fii8xxy96mcfihbnlx43lpgayiwz35s"))))
6846 (build-system texlive-build-system)
6847 (arguments
6848 '(#:tex-directory "latex/ms"
6849 #:tex-format "latex"))
6850 (home-page "https://ctan.org/pkg/ms")
6851 (synopsis "Various LATEX packages by Martin Schröder")
6852 (description
6853 "A bundle of LATEX packages by Martin Schröder; the collection comprises:
6854
6855 @itemize
6856 @item @command{count1to}, make use of fixed TEX counters;
6857 @item @command{everysel}, set commands to execute every time a font is selected;
6858 @item @command{everyshi}, set commands to execute whenever a page is shipped out;
6859 @item @command{multitoc}, typeset the table of contents in multiple columns;
6860 @item @command{prelim2e}, mark typeset pages as preliminary; and
6861 @item @command{ragged2e}, typeset ragged text and allow hyphenation.
6862 @end itemize\n")
6863 (license license:lppl1.3c+)))
6864
6865 (define-public texlive-latex-needspace
6866 (package
6867 (name "texlive-latex-needspace")
6868 (version (number->string %texlive-revision))
6869 (source (origin
6870 (method svn-fetch)
6871 (uri (texlive-ref "latex" "needspace"))
6872 (file-name (string-append name "-" version "-checkout"))
6873 (sha256
6874 (base32
6875 "0kw80f5jh4gdpa2ka815abza3gr5z8b929w0745vrlc59pl0017y"))))
6876 (build-system texlive-build-system)
6877 (arguments
6878 '(#:tex-directory "latex/needspace"
6879 #:tex-format "latex"))
6880 (inputs
6881 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6882 (home-page "https://www.ctan.org/pkg/needspace")
6883 (synopsis "Insert pagebreak if not enough space")
6884 (description
6885 "Provides commands to disable pagebreaking within a given vertical
6886 space. If there is not enough space between the command and the bottom of the
6887 page, a new page will be started.")
6888 (license license:lppl)))
6889
6890 (define-public texlive-latex-changepage
6891 (package
6892 (name "texlive-latex-changepage")
6893 (version (number->string %texlive-revision))
6894 (source
6895 (origin
6896 (method svn-fetch)
6897 (uri (texlive-ref "latex" "changepage"))
6898 (sha256
6899 (base32
6900 "1rpw8xg5p4jsyh236jma9dz3l29wjx4062f154b3wak5yjcxyxyb"))))
6901 (build-system texlive-build-system)
6902 (arguments
6903 '(#:tex-directory "latex/changepage"
6904 #:tex-format "latex"))
6905 (inputs
6906 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6907 (home-page "https://www.ctan.org/pkg/changepage")
6908 (synopsis "Margin adjustment and detection of odd/even pages")
6909 (description
6910 "The package provides commands to change the page layout in the middle of
6911 a document, and to robustly check for typesetting on odd or even pages.
6912 Instructions for use are at the end of the file. The package is an extraction
6913 of code from the @code{memoir} class, whose user interface it shares.")
6914 (license license:lppl1.3+)))
6915
6916 (define-public texlive-latex-eukdate
6917 (package
6918 (name "texlive-latex-eukdate")
6919 (version (number->string %texlive-revision))
6920 (source
6921 (origin
6922 (method svn-fetch)
6923 (uri (svn-reference
6924 (url (string-append "svn://www.tug.org/texlive/tags/"
6925 %texlive-tag "/Master/texmf-dist/"
6926 "/tex/latex/eukdate"))
6927 (revision %texlive-revision)))
6928 (file-name (string-append name "-" version "-checkout"))
6929 (sha256
6930 (base32
6931 "18xan116l8w47v560bkw6nbhkrml7g04xrlzk3jrpc7qsyf3n5fz"))))
6932 (build-system trivial-build-system)
6933 (arguments
6934 `(#:modules ((guix build utils))
6935 #:builder
6936 (begin
6937 (use-modules (guix build utils))
6938 (let ((target (string-append (assoc-ref %outputs "out")
6939 "/share/texmf-dist/tex/latex/eukdate")))
6940 (mkdir-p target)
6941 (copy-recursively (assoc-ref %build-inputs "source") target)
6942 #t))))
6943 (home-page "https://www.ctan.org/pkg/eukdate")
6944 (synopsis "UK format dates, with weekday")
6945 (description
6946 "The package is used to change the format of @code{\\today}’s date,
6947 including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which
6948 is preferred in many parts of the world, as distinct from that which is used in
6949 @code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'.")
6950 (license license:lppl)))
6951
6952 (define-public texlive-generic-ulem
6953 (package
6954 (name "texlive-generic-ulem")
6955 (version (number->string %texlive-revision))
6956 (source
6957 (origin
6958 (method svn-fetch)
6959 (uri (svn-reference
6960 (url (string-append "svn://www.tug.org/texlive/tags/"
6961 %texlive-tag "/Master/texmf-dist/"
6962 "/tex/generic/ulem"))
6963 (revision %texlive-revision)))
6964 (file-name (string-append name "-" version "-checkout"))
6965 (sha256
6966 (base32
6967 "1rzdniqq9zk39w8ch8ylx3ywh2mj87s4ivchrsk2b8nx06jyn797"))))
6968 (build-system trivial-build-system)
6969 (arguments
6970 `(#:modules ((guix build utils))
6971 #:builder
6972 (begin
6973 (use-modules (guix build utils))
6974 (let ((target (string-append (assoc-ref %outputs "out")
6975 "/share/texmf-dist/tex/generic/ulem")))
6976 (mkdir-p target)
6977 (copy-recursively (assoc-ref %build-inputs "source") target)
6978 #t))))
6979 (home-page "https://www.ctan.org/pkg/ulem")
6980 (synopsis "Underline text in TeX")
6981 (description
6982 "The package provides an @code{\\ul} (underline) command which will break
6983 over line ends; this technique may be used to replace @code{\\em} (both in that
6984 form and as the @code{\\emph} command), so as to make output look as if it comes
6985 from a typewriter. The package also offers double and wavy underlining, and
6986 striking out (line through words) and crossing out (/// over words).")
6987 (license license:lppl1.3c+)))
6988
6989 (define-public texlive-latex-pgf
6990 (package
6991 (name "texlive-latex-pgf")
6992 (version (number->string %texlive-revision))
6993 (source
6994 (origin
6995 (method svn-fetch)
6996 (uri (svn-reference
6997 (url (string-append "svn://www.tug.org/texlive/tags/"
6998 %texlive-tag "/Master/texmf-dist/"
6999 "/tex/latex/pgf"))
7000 (revision %texlive-revision)))
7001 (file-name (string-append name "-" version "-checkout"))
7002 (sha256
7003 (base32
7004 "1dq8p10pz8wn0vx412m7d7d5gj1syxly3yqdqvf7lv2xl8zndn5h"))))
7005 (build-system trivial-build-system)
7006 (native-inputs
7007 `(("texlive-latex-pgf-generic"
7008 ,(origin
7009 (method svn-fetch)
7010 (uri (svn-reference
7011 (url (string-append "svn://www.tug.org/texlive/tags/"
7012 %texlive-tag "/Master/texmf-dist/"
7013 "/tex/generic/pgf"))
7014 (revision %texlive-revision)))
7015 (file-name (string-append "texlive-latex-pgf-generic" version "-checkout"))
7016 (sha256
7017 (base32
7018 "0xkxw26sjzr5npjpzpr28yygwdbhzpdd0hsk80gjpidhcxmz393i"))))))
7019 (propagated-inputs
7020 `(("texlive-latex-xcolor" ,texlive-latex-xcolor)))
7021 (arguments
7022 `(#:modules ((guix build utils))
7023 #:builder
7024 (begin
7025 (use-modules (guix build utils))
7026 (let ((target-generic (string-append (assoc-ref %outputs "out")
7027 "/share/texmf-dist/tex/generic/pgf"))
7028 (target-latex (string-append (assoc-ref %outputs "out")
7029 "/share/texmf-dist/tex/latex/pgf")))
7030 (mkdir-p target-generic)
7031 (mkdir-p target-latex)
7032 (copy-recursively (assoc-ref %build-inputs "texlive-latex-pgf-generic") target-generic)
7033 (copy-recursively (assoc-ref %build-inputs "source") target-latex)
7034 #t))))
7035 (home-page "https://www.ctan.org/pkg/tikz")
7036 (synopsis "Create PostScript and PDF graphics in TeX")
7037 (description
7038 "PGF is a macro package for creating graphics. It is platform- and
7039 format-independent and works together with the most important TeX backend
7040 drivers, including pdfTeX and dvips. It comes with a user-friendly syntax layer
7041 called TikZ.
7042
7043 Its usage is similar to pstricks and the standard picture environment. PGF
7044 works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. Unlike pstricks, it can
7045 produce either PostScript or PDF output.")
7046 (license license:lppl1.3c+)))
7047
7048 (define-public texlive-latex-koma-script
7049 (package
7050 (name "texlive-latex-koma-script")
7051 (version (number->string %texlive-revision))
7052 (source (origin
7053 (method svn-fetch)
7054 (uri (svn-reference
7055 (url (string-append "svn://www.tug.org/texlive/tags/"
7056 %texlive-tag "/Master/texmf-dist/"
7057 "/tex/latex/koma-script"))
7058 (revision %texlive-revision)))
7059 (file-name (string-append name "-" version "-checkout"))
7060 (sha256
7061 (base32
7062 "0nqwf0sr4mf3v9gqa6apv6ml2xhcdwax0vgyf12a672g7rpdyvgm"))))
7063 (build-system trivial-build-system)
7064 (arguments
7065 `(#:modules ((guix build utils)
7066 (ice-9 match))
7067 #:builder
7068 (begin
7069 (use-modules (guix build utils)
7070 (ice-9 match))
7071 (let ((root (string-append (assoc-ref %outputs "out")
7072 "/share/texmf-dist/"))
7073 (pkgs '(("source" . "tex/latex/koma-script"))))
7074 (for-each (match-lambda
7075 ((pkg . dir)
7076 (let ((target (string-append root dir)))
7077 (mkdir-p target)
7078 (copy-recursively (assoc-ref %build-inputs pkg)
7079 target))))
7080 pkgs)
7081 #t))))
7082 (home-page "https://www.ctan.org/pkg/koma-script")
7083 (synopsis "Bundle of versatile classes and packages")
7084 (description
7085 "The KOMA-Script bundle provides replacements for the article, report, and
7086 book classes with emphasis on typography and versatility. There is also a
7087 letter class.
7088
7089 The bundle also offers:
7090
7091 @itemize
7092 @item a package for calculating type areas in the way laid down by the
7093 typographer Jan Tschichold,
7094 @item packages for easily changing and defining page styles,
7095 @item a package scrdate for getting not only the current date but also the name
7096 of the day, and
7097 @item a package scrtime for getting the current time.
7098 @end itemize
7099
7100 All these packages may be used not only with KOMA-Script classes but also with
7101 the standard classes.
7102
7103 Since every package has its own version number, the version number quoted only
7104 refers to the version of scrbook, scrreprt, scrartcl, scrlttr2 and
7105 typearea (which are the main parts of the bundle).")
7106 (license license:lppl1.3+)))
7107
7108 (define-public texlive-generic-listofitems
7109 (package
7110 (name "texlive-generic-listofitems")
7111 (version (number->string %texlive-revision))
7112 (source (origin
7113 (method svn-fetch)
7114 (uri (svn-reference
7115 (url (string-append "svn://www.tug.org/texlive/tags/"
7116 %texlive-tag "/Master/texmf-dist/"
7117 "/tex/generic/listofitems"))
7118 (revision %texlive-revision)))
7119 (file-name (string-append name "-" version "-checkout"))
7120 (sha256
7121 (base32
7122 "0hs28fc0v2l92ad9las9b8xcckyrdrwmyhcx1yzmbr6s7s6nvsx8"))))
7123 (build-system trivial-build-system)
7124 (arguments
7125 `(#:modules ((guix build utils))
7126 #:builder
7127 (begin
7128 (use-modules (guix build utils))
7129 (let ((target (string-append (assoc-ref %outputs "out")
7130 "/share/texmf-dist/tex/generic/listofitems")))
7131 (mkdir-p target)
7132 (copy-recursively (assoc-ref %build-inputs "source") target)
7133 #t))))
7134 (home-page "https://www.ctan.org/pkg/listofitems")
7135 (synopsis "Grab items in lists using user-specified separation character")
7136 (description
7137 "This package allows one to capture all the items of a list, for which
7138 the parsing character has been selected by the user, and to access any of
7139 these items with a simple syntax.")
7140 (license license:lppl1.3c+)))
7141
7142 (define-public texlive-latex-readarray
7143 (package
7144 (name "texlive-latex-readarray")
7145 (version (number->string %texlive-revision))
7146 (source (origin
7147 (method svn-fetch)
7148 (uri (svn-reference
7149 (url (string-append "svn://www.tug.org/texlive/tags/"
7150 %texlive-tag "/Master/texmf-dist/"
7151 "/tex/latex/readarray"))
7152 (revision %texlive-revision)))
7153 (file-name (string-append name "-" version "-checkout"))
7154 (sha256
7155 (base32
7156 "0c53k180ivn1n7fz3ngvd2w1i5dw3kxml0n64vhki88xsylz7lxp"))))
7157 (build-system trivial-build-system)
7158 (arguments
7159 `(#:modules ((guix build utils))
7160 #:builder
7161 (begin
7162 (use-modules (guix build utils))
7163 (let ((target (string-append (assoc-ref %outputs "out")
7164 "/share/texmf-dist/tex/latex/readarray")))
7165 (mkdir-p target)
7166 (copy-recursively (assoc-ref %build-inputs "source") target)
7167 #t))))
7168 (propagated-inputs
7169 `(("texlive-generic-listofitems" ,texlive-generic-listofitems)))
7170 (home-page "https://www.ctan.org/pkg/readarray")
7171 (synopsis "Read, store and recall array-formatted data")
7172 (description
7173 "This package allows the user to input formatted data into elements of a
7174 2-D or 3-D array and to recall that data at will by individual cell number.
7175 The data can be but need not be numerical in nature. It can be, for example,
7176 formatted text.")
7177 (license license:lppl1.3)))
7178
7179 (define-public texlive-latex-verbatimbox
7180 (package
7181 (name "texlive-latex-verbatimbox")
7182 (version (number->string %texlive-revision))
7183 (source (origin
7184 (method svn-fetch)
7185 (uri (svn-reference
7186 (url (string-append "svn://www.tug.org/texlive/tags/"
7187 %texlive-tag "/Master/texmf-dist/"
7188 "/tex/latex/verbatimbox"))
7189 (revision %texlive-revision)))
7190 (file-name (string-append name "-" version "-checkout"))
7191 (sha256
7192 (base32
7193 "0qh1cgvfs463zsi2pjg490gj0mkjfdpfc381j10cbb5la304psna"))))
7194 (build-system trivial-build-system)
7195 (arguments
7196 `(#:modules ((guix build utils))
7197 #:builder
7198 (begin
7199 (use-modules (guix build utils))
7200 (let ((target (string-append (assoc-ref %outputs "out")
7201 "/share/texmf-dist/tex/latex/verbatimbox")))
7202 (mkdir-p target)
7203 (copy-recursively (assoc-ref %build-inputs "source") target)
7204 #t))))
7205 (propagated-inputs
7206 `(("texlive-latex-readarray" ,texlive-latex-readarray)))
7207 (home-page "https://www.ctan.org/pkg/verbatimbox")
7208 (synopsis "Deposit verbatim text in a box")
7209 (description
7210 "The package provides a @code{verbbox} environment to place its contents
7211 into a globally available box, or into a box specified by the user. The
7212 global box may then be used in a variety of situations (for example, providing
7213 a replica of the @code{boxedverbatim} environment itself). A valuable use is
7214 in places where the standard @code{verbatim} environment (which is based on a
7215 @code{trivlist}) may not appear.")
7216 (license license:lppl1.3+)))
7217
7218 (define-public texlive-latex-examplep
7219 (package
7220 (name "texlive-latex-examplep")
7221 (version (number->string %texlive-revision))
7222 (source (origin
7223 (method svn-fetch)
7224 (uri (svn-reference
7225 (url (string-append "svn://www.tug.org/texlive/tags/"
7226 %texlive-tag "/Master/texmf-dist/"
7227 "/tex/latex/examplep"))
7228 (revision %texlive-revision)))
7229 (file-name (string-append name "-" version "-checkout"))
7230 (sha256
7231 (base32
7232 "0fsvvmz68ij0zwfzrny6x13d92grxr4ap59lxgah4smbkccd6s27"))))
7233 (build-system trivial-build-system)
7234 (arguments
7235 `(#:modules ((guix build utils))
7236 #:builder
7237 (begin
7238 (use-modules (guix build utils))
7239 (let ((target (string-append (assoc-ref %outputs "out")
7240 "/share/texmf-dist/tex/latex/examplep")))
7241 (mkdir-p target)
7242 (copy-recursively (assoc-ref %build-inputs "source") target)
7243 #t))))
7244 (home-page "https://www.ctan.org/pkg/examplep")
7245 (synopsis "Verbatim phrases and listings in LaTeX")
7246 (description
7247 "Examplep provides sophisticated features for typesetting verbatim source
7248 code listings, including the display of the source code and its compiled LaTeX
7249 or METAPOST output side-by-side, with automatic width detection and enabled
7250 page breaks (in the source), without the need for specifying the source twice.
7251 Special care is taken that section, page and footnote numbers do not interfere
7252 with the main document. For typesetting short verbatim phrases, a replacement
7253 for the @code{\\verb} command is also provided in the package, which can be
7254 used inside tables and moving arguments such as footnotes and section
7255 titles.")
7256 ;; No version of the GPL is specified.
7257 (license license:gpl3+)))
7258
7259 (define-public texlive-generic-xypic
7260 (package
7261 (name "texlive-generic-xypic")
7262 (version (number->string %texlive-revision))
7263 (source
7264 (origin
7265 (method svn-fetch)
7266 (uri (svn-reference
7267 (url (string-append "svn://www.tug.org/texlive/tags/"
7268 %texlive-tag "/Master/texmf-dist/"
7269 "/tex/generic/xypic"))
7270 (revision %texlive-revision)))
7271 (file-name (string-append name "-" version "-checkout"))
7272 (sha256
7273 (base32
7274 "1g5cyxwdfznq4lk9zl6fkjkapmhmwd2cm4m5aibxj20qgwnaggfz"))))
7275 (build-system trivial-build-system)
7276 (arguments
7277 `(#:modules ((guix build utils))
7278 #:builder
7279 (begin
7280 (use-modules (guix build utils))
7281 (let ((target (string-append (assoc-ref %outputs "out")
7282 "/share/texmf-dist/tex/generic/xypic")))
7283 (mkdir-p target)
7284 (copy-recursively (assoc-ref %build-inputs "source") target)
7285 #t))))
7286 (home-page "https://www.ctan.org/pkg/xypic")
7287 (synopsis "Flexible diagramming macros for TeX")
7288 (description
7289 "A package for typesetting a variety of graphs and diagrams with TeX.
7290 Xy-pic works with most formats (including LaTeX, AMS-LaTeX, AMS-TeX, and plain
7291 TeX).")
7292 (license license:gpl3+)))
7293
7294 (define-public texlive-fonts-xypic
7295 (package
7296 (name "texlive-fonts-xypic")
7297 (version (number->string %texlive-revision))
7298 (source (origin
7299 (method svn-fetch)
7300 (uri (svn-reference
7301 (url (string-append "svn://www.tug.org/texlive/tags/"
7302 %texlive-tag "/Master/texmf-dist/"
7303 "/fonts/source/public/xypic"))
7304 (revision %texlive-revision)))
7305 (file-name (string-append name "-" version "-checkout"))
7306 (sha256
7307 (base32
7308 "0p20v1257kwsqnrk98cdhhiz2viv8l3ly4xay4by0an3j37m9xs3"))))
7309 (build-system trivial-build-system)
7310 (arguments
7311 `(#:modules ((guix build utils)
7312 (ice-9 match))
7313 #:builder
7314 (begin
7315 (use-modules (guix build utils)
7316 (ice-9 match))
7317 (let ((root (string-append (assoc-ref %outputs "out")
7318 "/share/texmf-dist/"))
7319 (pkgs '(("source" . "fonts/source/public/xypic")
7320 ("xypic-afm" . "fonts/afm/public/xypic")
7321 ("xypic-type1" . "fonts/type1/public/xypic")
7322 ("xypic-enc" . "fonts/enc/dvips/xypic"))))
7323 (for-each (match-lambda
7324 ((pkg . dir)
7325 (let ((target (string-append root dir)))
7326 (mkdir-p target)
7327 (copy-recursively (assoc-ref %build-inputs pkg)
7328 target))))
7329 pkgs)
7330 #t))))
7331 (native-inputs
7332 `(("xypic-afm"
7333 ,(origin
7334 (method svn-fetch)
7335 (uri (svn-reference
7336 (url (string-append "svn://www.tug.org/texlive/tags/"
7337 %texlive-tag "/Master/texmf-dist/"
7338 "/fonts/afm/public/xypic"))
7339 (revision %texlive-revision)))
7340 (file-name (string-append name "-afm-" version "-checkout"))
7341 (sha256
7342 (base32
7343 "149xdijxp8lw3s0qv2aqxxxyyn748z57dpr596rjvkqdffpnsddh"))))
7344 ("xypic-type1"
7345 ,(origin
7346 (method svn-fetch)
7347 (uri (svn-reference
7348 (url (string-append "svn://www.tug.org/texlive/tags/"
7349 %texlive-tag "/Master/texmf-dist/"
7350 "/fonts/type1/public/xypic"))
7351 (revision %texlive-revision)))
7352 (file-name (string-append name "-type1-" version "-checkout"))
7353 (sha256
7354 (base32
7355 "1bln89wib7g3hcv2jny3qi6jb73k9d2vbgx3wnnjwp3ryg0846if"))))
7356 ("xypic-enc"
7357 ,(origin
7358 (method svn-fetch)
7359 (uri (svn-reference
7360 (url (string-append "svn://www.tug.org/texlive/tags/"
7361 %texlive-tag "/Master/texmf-dist/"
7362 "/fonts/enc/dvips/xypic"))
7363 (revision %texlive-revision)))
7364 (file-name (string-append name "-enc-" version "-checkout"))
7365 (sha256
7366 (base32
7367 "0yi8vms3203l3p5slnhrrlzzp0f0jw77fkcvcaicrz2vmw9z99x7"))))))
7368 (home-page "https://www.ctan.org/pkg/xypic")
7369 (synopsis "Fonts for XY-pic")
7370 (description "This package provides the XY-pic fonts.")
7371 (license license:gpl3+)))
7372
7373 (define-public texlive-bibtex
7374 (package
7375 (name "texlive-bibtex")
7376 (version (number->string %texlive-revision))
7377 (source
7378 (origin
7379 (method svn-fetch)
7380 (uri (svn-reference
7381 (url (string-append "svn://www.tug.org/texlive/tags/"
7382 %texlive-tag "/Master/texmf-dist/"
7383 "/bibtex"))
7384 (revision %texlive-revision)))
7385 (file-name (string-append name "-" version "-checkout"))
7386 (sha256
7387 (base32
7388 "0hnbs0s1znbn32hfcsyijl39z81sdb00jf092a4blqz421qs2mbv"))))
7389 (build-system trivial-build-system)
7390 (arguments
7391 `(#:modules ((guix build utils))
7392 #:builder
7393 (begin
7394 (use-modules (guix build utils))
7395 (let ((target (string-append (assoc-ref %outputs "out")
7396 "/share/texmf-dist/bibtex")))
7397 (mkdir-p target)
7398 (copy-recursively (assoc-ref %build-inputs "source") target)
7399 #t))))
7400 (home-page "https://www.ctan.org/pkg/bibtex")
7401 (synopsis "Process bibliographies for LaTeX")
7402 (description
7403 "BibTeX allows the user to store his citation data in generic form, while
7404 printing citations in a document in the form specified by a BibTeX style, to
7405 be specified in the document itself (one often needs a LaTeX citation-style
7406 package, such as @command{natbib} as well).")
7407 (license license:knuth)))
7408
7409 (define-public texlive-fonts-charter
7410 (package
7411 (name "texlive-fonts-charter")
7412 (version (number->string %texlive-revision))
7413 (source (origin
7414 (method svn-fetch)
7415 (uri (svn-reference
7416 (url (string-append "svn://www.tug.org/texlive/tags/"
7417 %texlive-tag "/Master/texmf-dist/"
7418 "/fonts/type1/bitstrea/charter"))
7419 (revision %texlive-revision)))
7420 (file-name (string-append name "-" version "-checkout"))
7421 (sha256
7422 (base32
7423 "0yvib45xxff3jm5270zij4q888pivbc18cqs7lz4pqfhn1am4wnv"))))
7424 (build-system trivial-build-system)
7425 (arguments
7426 `(#:modules ((guix build utils)
7427 (ice-9 match))
7428 #:builder
7429 (begin
7430 (use-modules (guix build utils)
7431 (ice-9 match))
7432 (let ((root (string-append (assoc-ref %outputs "out")
7433 "/share/texmf-dist/"))
7434 (pkgs '(("source" . "fonts/type1/bitstrea/charter")
7435 ("charter-afm" . "fonts/afm/bitstrea/charter")
7436 ("charter-tfm" . "fonts/tfm/bitstrea/charter"))))
7437 (for-each (match-lambda
7438 ((pkg . dir)
7439 (let ((target (string-append root dir)))
7440 (mkdir-p target)
7441 (copy-recursively (assoc-ref %build-inputs pkg)
7442 target))))
7443 pkgs)
7444 #t))))
7445 (native-inputs
7446 `(("charter-afm"
7447 ,(origin
7448 (method svn-fetch)
7449 (uri (svn-reference
7450 (url (string-append "svn://www.tug.org/texlive/tags/"
7451 %texlive-tag "/Master/texmf-dist/"
7452 "/fonts/afm/bitstrea/charter"))
7453 (revision %texlive-revision)))
7454 (file-name (string-append name "-afm-" version "-checkout"))
7455 (sha256
7456 (base32
7457 "02nbkqrlr3vypnzslmr7dxg1353mmc0rl4ynx0s6qbvf313fq76a"))))
7458 ("charter-tfm"
7459 ,(origin
7460 (method svn-fetch)
7461 (uri (svn-reference
7462 (url (string-append "svn://www.tug.org/texlive/tags/"
7463 %texlive-tag "/Master/texmf-dist/"
7464 "/fonts/tfm/bitstrea/charter"))
7465 (revision %texlive-revision)))
7466 (file-name (string-append name "-tfm-" version "-checkout"))
7467 (sha256
7468 (base32
7469 "0j7ci9vprivbhac70aq0z7m23hqcpx1g0i3wp1k0h8ilhimj80xk"))))))
7470 (home-page "https://www.ctan.org/pkg/charter")
7471 (synopsis "Charter fonts for TeX")
7472 (description "A commercial text font donated for the common good. Support
7473 for use with LaTeX is available in @code{freenfss}, part of
7474 @command{psnfss}. ")
7475 (license (license:non-copyleft (string-append "http://mirrors.ctan.org/"
7476 "fonts/charter/readme.charter")))))
7477
7478 (define-public texlive-context-base
7479 (package
7480 (name "texlive-context-base")
7481 (version (number->string %texlive-revision))
7482 (source (origin
7483 (method svn-fetch)
7484 (uri (svn-reference
7485 (url (string-append "svn://www.tug.org/texlive/tags/"
7486 %texlive-tag "/Master/texmf-dist/"
7487 "/tex/context/base"))
7488 (revision %texlive-revision)))
7489 (file-name (string-append name "-" version "-checkout"))
7490 (sha256
7491 (base32
7492 "0rlx4qqijms1n64gjx475kvip8l322fh7v17zkmwp1l1g0w3vlyz"))))
7493 (build-system trivial-build-system)
7494 (arguments
7495 `(#:modules ((guix build utils))
7496 #:builder
7497 (begin
7498 (use-modules (guix build utils))
7499 (let ((target (string-append (assoc-ref %outputs "out")
7500 "/share/texmf-dist/tex/context/case")))
7501 (mkdir-p target)
7502 (copy-recursively (assoc-ref %build-inputs "source") target)
7503 #t))))
7504 (home-page "https://www.ctan.org/pkg/context")
7505 (synopsis "Full featured, parameter driven macro package for TeX")
7506 (description "A full featured, parameter driven macro package, which fully
7507 supports advanced interactive documents. See the ConTeXt garden for a wealth
7508 of support information.")
7509 (license license:gpl2+)))
7510
7511 (define-public texlive-latex-beamer
7512 (package
7513 (name "texlive-latex-beamer")
7514 (version (number->string %texlive-revision))
7515 (source (origin
7516 (method svn-fetch)
7517 (uri (svn-reference
7518 (url (string-append "svn://www.tug.org/texlive/tags/"
7519 %texlive-tag "/Master/texmf-dist/"
7520 "/tex/latex/beamer"))
7521 (revision %texlive-revision)))
7522 (file-name (string-append name "-" version "-checkout"))
7523 (sha256
7524 (base32
7525 "09y3qwbj0nckshvg9afgwcv9v3zdif1d7bnpzrggsa1fbr80mgk2"))))
7526 (build-system trivial-build-system)
7527 (outputs '("out" "doc"))
7528 (arguments
7529 `(#:modules ((guix build utils))
7530 #:builder
7531 (begin
7532 (use-modules (guix build utils))
7533 (let ((target (string-append (assoc-ref %outputs "out")
7534 "/share/texmf-dist/tex/latex/beamer"))
7535 (docs (string-append (assoc-ref %outputs "doc")
7536 "/share/texmf-dist/doc/latex/beamer/")))
7537 (mkdir-p target)
7538 (copy-recursively (assoc-ref %build-inputs "source") target)
7539
7540 (mkdir-p docs)
7541 (copy-recursively (assoc-ref %build-inputs "docs") docs)
7542 #t))))
7543 (propagated-inputs
7544 `(("texlive-latex-hyperref" ,texlive-latex-hyperref)
7545 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
7546 ("texlive-latex-etoolbox" ,texlive-latex-etoolbox)
7547 ("texlive-latex-pgf" ,texlive-latex-pgf)))
7548 (native-inputs
7549 `(("docs"
7550 ,(origin
7551 (method svn-fetch)
7552 (uri (svn-reference
7553 (url (string-append "svn://www.tug.org/texlive/tags/"
7554 %texlive-tag "/Master/texmf-dist/"
7555 "/doc/latex/beamer"))
7556 (revision %texlive-revision)))
7557 (file-name (string-append name "-" version "-checkout"))
7558 (sha256
7559 (base32
7560 "102b18b9nw9dicqqgjwx0srh1mav8vh9wdvwayn741niza9hac23"))))))
7561 (home-page "https://www.ctan.org/pkg/beamer")
7562 (synopsis "LaTeX class for producing presentations and slides")
7563 (description "The beamer LaTeX class can be used for producing slides.
7564 The class works in both PostScript and direct PDF output modes, using the
7565 @code{pgf} graphics system for visual effects. Content is created in the
7566 @code{frame} environment, and each frame can be made up of a number of slides
7567 using a simple notation for specifying material to appear on each slide within
7568 a frame. Short versions of title, authors, institute can also be specified as
7569 optional parameters. Whole frame graphics are supported by plain frames. The
7570 class supports @code{figure} and @code{table} environments, transparency
7571 effects, varying slide transitions and animations.")
7572 ;; Code is dual licensed under GPLv2+ or LPPL1.3c+; documentation is
7573 ;; dual-licensed under either FDLv1.3+ or LPPL1.3c+.
7574 (license (list license:lppl1.3c+ license:gpl2+ license:fdl1.3+))))
7575
7576 (define-public texlive-latex-xmpincl
7577 (package
7578 (name "texlive-latex-xmpincl")
7579 (version (number->string %texlive-revision))
7580 (source
7581 (origin
7582 (method svn-fetch)
7583 (uri (texlive-ref "latex" "xmpincl"))
7584 (sha256
7585 (base32
7586 "0lq3dfb4fsw955gjwllnk7cg00ciq5mva64mlpbva6g2jz117734"))))
7587 (build-system texlive-build-system)
7588 (arguments '(#:tex-directory "latex/xmpincl"))
7589 (home-page "http://www.ctan.org/pkg/xmpincl")
7590 (synopsis "Include eXtensible Metadata Platform data in pdfLaTeX")
7591 (description
7592 "The XMP (eXtensible Metadata platform) is a framework to add metadata to
7593 digital material to enhance the workflow in publication. The essence is that
7594 the metadata is stored in an XML file, and this XML stream is then embedded in
7595 the file to which it applies.")
7596 (license license:gpl3+)))
7597
7598 (define-public texlive-latex-pdfx
7599 (package
7600 (name "texlive-latex-pdfx")
7601 (version (number->string %texlive-revision))
7602 (source
7603 (origin
7604 (method svn-fetch)
7605 (uri (texlive-ref "latex" "pdfx"))
7606 (sha256
7607 (base32
7608 "0ikxg8yzq78hy5b9x13d4nah46d0yvmwlqmdri06pygbx116dcac"))))
7609 (build-system texlive-build-system)
7610 (arguments
7611 '(#:tex-directory "latex/pdfx"
7612 #:phases
7613 (modify-phases %standard-phases
7614 (add-after 'unpack 'fix-encoding
7615 (lambda _
7616 (substitute* "pdfx.dtx"
7617 ((" .+umaczy") "umaczy"))
7618 #t))
7619 (add-before 'install 'install-tex-files
7620 (lambda* (#:key inputs outputs #:allow-other-keys)
7621 (let ((target (string-append (assoc-ref outputs "out")
7622 "/share/texmf-dist/tex/latex/pdfx")))
7623 (mkdir-p target)
7624 (copy-recursively (assoc-ref inputs "texlive-tex-pdfx") target)
7625 ;; Install the generated version in the "install" phase.
7626 (delete-file (string-append target "/pdfx.sty"))
7627 #t))))))
7628 (propagated-inputs
7629 `(("texlive-generic-pdftex" ,texlive-generic-pdftex)))
7630 (native-inputs
7631 `(("texlive-tex-pdfx"
7632 ,(origin
7633 (method svn-fetch)
7634 (uri (svn-reference
7635 (url (string-append "svn://www.tug.org/texlive/tags/"
7636 %texlive-tag "/Master/texmf-dist/"
7637 "/tex/latex/pdfx"))
7638 (revision %texlive-revision)))
7639 (file-name (string-append "texlive-tex-latex-pdfx-" version "-checkout"))
7640 (sha256
7641 (base32
7642 "14j1zsvqc59ims3sk34v6km8db6cimks28y5fcxcr5mi2ykvj4vf"))))))
7643 (home-page "https://www.ctan.org/pkg/pdfx")
7644 (synopsis "PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX")
7645 (description
7646 "This package helps LaTeX users to create PDF/X, PFD/A and other
7647 standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX.")
7648 (license license:lppl1.2+)))