gnu: Add texlive-filemod.
[jackhill/guix/guix.git] / gnu / packages / tex.scm
CommitLineData
eb0119ef 1;;; GNU Guix --- Functional package management for GNU
4a6635f3 2;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
42e1394b 3;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
d2e84281 4;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
4791876c 5;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
e5a03489 6;;; Copyright © 2016, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
2d634d9b 7;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
bd917486 8;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
d68c8017 9;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
149f6688 10;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
594156ec 11;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
585be42f 12;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
ec40a050 13;;; Copyright © 2018 Danny Milosavljevic <dannym+a@scratchpost.org>
a9fda571 14;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
eb0119ef
AE
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
8f9ac901 31(define-module (gnu packages tex)
b5b73a82 32 #:use-module ((guix licenses) #:prefix license:)
eb0119ef
AE
33 #:use-module (guix packages)
34 #:use-module (guix download)
ec40a050 35 #:use-module (guix build-system cmake)
eb0119ef 36 #:use-module (guix build-system gnu)
ebcf74da 37 #:use-module (guix build-system perl)
0aa34e82 38 #:use-module (guix build-system trivial)
205794c8 39 #:use-module (guix build-system texlive)
6b5eb840 40 #:use-module (guix utils)
83457fe0 41 #:use-module (guix git-download)
9d913b25 42 #:use-module (guix svn-download)
eb0119ef 43 #:use-module (gnu packages)
ec40a050 44 #:use-module (gnu packages algebra)
83457fe0 45 #:use-module (gnu packages autotools)
0aa34e82 46 #:use-module (gnu packages bash)
ec40a050 47 #:use-module (gnu packages boost)
eb0119ef 48 #:use-module (gnu packages compression)
a86177d6 49 #:use-module (gnu packages fontutils)
fd89b36b 50 #:use-module (gnu packages gd)
eb0119ef 51 #:use-module (gnu packages ghostscript)
769bb5e5 52 #:use-module (gnu packages graphviz)
fd89b36b 53 #:use-module (gnu packages gtk)
eb0119ef 54 #:use-module (gnu packages icu4c)
e55354b8 55 #:use-module (gnu packages image)
ec40a050 56 #:use-module (gnu packages libreoffice)
0aa34e82 57 #:use-module (gnu packages lua)
0256c746 58 #:use-module (gnu packages multiprecision)
eb0119ef
AE
59 #:use-module (gnu packages pdf)
60 #:use-module (gnu packages perl)
5ccde207 61 #:use-module (gnu packages perl-check)
eb0119ef
AE
62 #:use-module (gnu packages pkg-config)
63 #:use-module (gnu packages python)
5327e912 64 #:use-module (gnu packages python-xyz)
4791876c 65 #:use-module (gnu packages qt)
b32c8549 66 #:use-module (gnu packages ruby)
b7194849 67 #:use-module (gnu packages shells)
ce0614dd 68 #:use-module (gnu packages base)
c87d8a14 69 #:use-module (gnu packages gawk)
d4000680
RW
70 #:use-module (gnu packages web)
71 #:use-module (gnu packages xml)
c0589f75 72 #:use-module (gnu packages xorg)
ece9b417 73 #:use-module (gnu packages xdisorg)
6b5eb840
AE
74 #:autoload (gnu packages texinfo) (texinfo)
75 #:use-module (ice-9 ftw)
cb7bc20a 76 #:use-module (ice-9 match)
e93f472d 77 #:use-module ((srfi srfi-1) #:hide (zip)))
eb0119ef 78
8ab600f8
RW
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,
82downloading from a list of LOCATIONS in the TeX Live repository, and expecting
83the provided output HASH. If TRIVIAL? is provided, all files will simply be
84copied 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
28e521e9
RW
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
cf4c07b9
RW
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
eb0119ef
AE
227(define texlive-extra-src
228 (origin
229 (method url-fetch)
3e1ebaab 230 (uri "ftp://tug.org/historic/systems/texlive/2018/texlive-20180414-extra.tar.xz")
eb0119ef 231 (sha256 (base32
3e1ebaab 232 "0a83kymxc8zmlxjb0y1gf6mx7qnf0hxffwkivwh5yh138y2rfhsv"))))
eb0119ef
AE
233
234(define texlive-texmf-src
235 (origin
236 (method url-fetch)
3e1ebaab 237 (uri "ftp://tug.org/historic/systems/texlive/2018/texlive-20180414-texmf.tar.xz")
eb0119ef 238 (sha256 (base32
3e1ebaab 239 "1b8zigzg8raxkhhzphcmynf84rbdbj2ym2qkz24v8n0qx82zmqms"))))
eb0119ef 240
3abe72bd 241(define-public texlive-bin
eb0119ef 242 (package
0aa34e82 243 (name "texlive-bin")
3e1ebaab 244 (version "20180414")
0aa34e82
AE
245 (source
246 (origin
3e1ebaab
RW
247 (method url-fetch)
248 (uri (string-append "ftp://tug.org/historic/systems/texlive/2018/"
149f6688 249 "texlive-" version "-source.tar.xz"))
3e1ebaab
RW
250 (sha256
251 (base32
252 "0khyi6h015r2zfqgg0a44a2j7vmr1cy42knw7jbss237yvakc07y"))
594156ec 253 (patches
0fa50555
MB
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")))))))
eb0119ef 271 (build-system gnu-build-system)
0aa34e82
AE
272 (inputs
273 `(("texlive-extra-src" ,texlive-extra-src)
274 ("cairo" ,cairo)
275 ("fontconfig" ,fontconfig)
276 ("fontforge" ,fontforge)
277 ("freetype" ,freetype)
278 ("gd" ,gd)
0256c746 279 ("gmp" ,gmp)
0aa34e82
AE
280 ("ghostscript" ,ghostscript)
281 ("graphite2" ,graphite2)
282 ("harfbuzz" ,harfbuzz)
283 ("icu4c" ,icu4c)
284 ("libpaper" ,libpaper)
285 ("libpng" ,libpng)
286 ("libxaw" ,libxaw)
287 ("libxt" ,libxt)
0256c746 288 ("mpfr" ,mpfr)
0aa34e82
AE
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)))
c4c4cc05 299 (native-inputs
e9a6d225 300 `(("pkg-config" ,pkg-config)))
eb0119ef
AE
301 (arguments
302 `(#:out-of-source? #t
303 #:configure-flags
304 `("--disable-native-texlive-build"
594156ec
MB
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"
fd89b36b 308 "--with-system-cairo"
eb0119ef 309 "--with-system-freetype2"
fd89b36b 310 "--with-system-gd"
0256c746 311 "--with-system-gmp"
be2c88ca 312 "--with-system-graphite2"
c70cf7eb 313 "--with-system-harfbuzz"
eb0119ef
AE
314 "--with-system-icu"
315 "--with-system-libgs"
609578a7 316 "--with-system-libpaper"
eb0119ef 317 "--with-system-libpng"
0256c746 318 "--with-system-mpfr"
fd89b36b 319 "--with-system-pixman"
eb0119ef 320 "--with-system-poppler"
75916982 321 "--with-system-potrace"
eb0119ef
AE
322 "--with-system-teckit"
323 "--with-system-xpdf"
324 "--with-system-zlib"
325 "--with-system-zziplib")
2f4640e3 326
7683bf11
EB
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))))
eb0119ef 333 #:phases
3e1ebaab 334 (modify-phases %standard-phases
f1728d43 335 (add-after 'unpack 'configure-ghostscript-executable
3e1ebaab
RW
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
59e80445 339 ;; Guix System does not have /usr/bin, it is also detected as Windows.
f1728d43 340 (lambda* (#:key inputs #:allow-other-keys)
3e1ebaab
RW
341 (substitute* "utils/ps2eps/ps2eps-src/bin/ps2eps.pl"
342 (("gswin32c") "gs"))
f1728d43
RW
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 _
0fa50555 349 (copy-file "texk/web2c/pdftexdir/pdftoepdf-poppler0.72.0.cc"
f1728d43 350 "texk/web2c/pdftexdir/pdftoepdf.cc")
0fa50555 351 (copy-file "texk/web2c/pdftexdir/pdftosrc-poppler0.72.0.cc"
f1728d43 352 "texk/web2c/pdftexdir/pdftosrc.cc")
3e1ebaab 353 #t))
be200ef3
MB
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"
21f7d88e 359 (("^\\./omfonts -ofm2opl \\$srcdir/tests/check tests/xcheck \\|\\| exit 1")
be200ef3
MB
360 "./omfonts -ofm2opl $srcdir/tests/check tests/xcheck || exit 77"))
361 #t))
3e1ebaab
RW
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)))
1574932d
RW
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"))
3e1ebaab
RW
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))))))))
a1b4d62c
RW
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))))
0aa34e82
AE
404 (synopsis "TeX Live, a package of the TeX typesetting system")
405 (description
406 "TeX Live provides a comprehensive TeX document production system.
407It includes all the major TeX-related programs, macro packages, and fonts
408that are free software, including support for many languages around the
409world.
410
411This package contains the binaries.")
132e14b4
EF
412 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
413 (home-page "https://www.tug.org/texlive/")))
0aa34e82 414
2cece695 415\f
7a9b737a
RW
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
427documentation from TeX files. It is part of the LaTeX base.")
428 (license license:lppl1.3+)))
429
2cece695
RW
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
442data for TeX use. It contains a set of text files provided by the Unicode
443Consortium 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
445Database. Accompanying these source data are generic TeX loader files
446allowing this data to be used as part of TeX runs, in particular in building
447format files. Currently there are two loader files: one for general character
448set up and one for initializing XeTeX character classes as has been carried
449out 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
92b4a48c
RW
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
476the autogenerated files @file{language.dat} and @file{language.def} (and
477default versions of those), etc.")
478 (license license:knuth)))
479
659fda6c
RW
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.
9d913b25
RW
482(define-public texlive-dvips
483 (package
659fda6c
RW
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))
b8d8806b 492 (home-page "https://www.ctan.org/pkg/dvips")
9d913b25
RW
493 (synopsis "DVI to PostScript drivers")
494 (description "This package provides files needed for converting DVI files
495to PostScript.")
496 ;; Various free software licenses apply to individual files.
497 (license (list license:lppl1.3c+
498 license:expat
499 license:lgpl3+))))
500
b8df0d1b 501(define-public texlive-tex-ini-files
453aae66 502 (package
b8df0d1b
RW
503 (inherit (simple-texlive-package
504 "texlive-tex-ini-files"
505 (list "/tex/generic/tex-ini-files/")
506 (base32
507 "0q1g62jg0qiqslm93ycvm30bw8ydmssjdshzsnzl7n2vpd62qfi2")
508 #:trivial? #t))
b8d8806b 509 (home-page "https://www.ctan.org/pkg/tex-ini-files")
453aae66
RW
510 (synopsis "Files for creating TeX formats")
511 (description "This bundle provides a collection of model \".ini\" files
512for creating TeX formats. These files are commonly used to introduced
513distribution-dependent variations in formats. They are also used to
514allow existing format source files to be used with newer engines, for example
515to adapt the plain e-TeX source file to work with XeTeX and LuaTeX.")
516 (license license:public-domain)))
517
b8df0d1b
RW
518(define-public texlive-generic-tex-ini-files
519 (deprecated-package "texlive-generic-tex-ini-files" texlive-tex-ini-files))
520
8ada0f0b
RW
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)))
1dec413a 532 (file-name (string-append name "-" version "-checkout"))
8ada0f0b
RW
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"
3730a107 554 (invoke "inimf" "mf.mf"))))
8ada0f0b
RW
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)))
b8d8806b 567 (home-page "https://www.ctan.org/pkg/metafont")
8ada0f0b
RW
568 (synopsis "Metafont base files")
569 (description "This package provides the Metafont base files needed to
570build fonts using the Metafont system.")
571 (license license:knuth)))
572
e9816fcb
RW
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
513fff4c
RW
656Metric files to TeX metric and virtual font format. Fontinst helps mainly
657with the number crunching and shovelling parts of font installation. This
658means in practice that it creates a number of files which give the TeX
659metrics (and related information) for a font family that TeX needs to do any
660typesetting in these fonts.")
e9816fcb
RW
661 (license license:lppl1.1+))))
662
663(define-public texlive-tex-fontinst-base
664 (deprecated-package "texlive-tex-fontinst-base" texlive-fontinst))
513fff4c 665
dea67d8a
RW
666(define-public texlive-fontname
667 (package
14a87760
RW
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))
dea67d8a
RW
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)
678external TeX font filenames. This makes at most eight-character names
679from (almost) arbitrarily complex font names, thus helping portability of TeX
680documents.")
681 (license license:public-domain)))
682
3c4f1ec7
RW
683(define-public texlive-fonts-cm
684 (package
2b63e54b
RW
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"))
3c4f1ec7
RW
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"
2b63e54b 711 (string-append (getcwd) "/fonts/source/public/cm/:"
3c4f1ec7 712 mf "/share/texmf-dist/metafont/base")))
2b63e54b
RW
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$"))))
ff440d62 737 #t))
3c4f1ec7 738 (replace 'install
6534e885 739 (lambda* (#:key inputs outputs #:allow-other-keys)
2b63e54b
RW
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")))
3c4f1ec7
RW
747 (for-each (cut install-file <> tfm)
748 (find-files "build" "\\.*"))
749 (for-each (cut install-file <> mf)
750 (find-files "." "\\.mf"))
26a05061 751 (copy-recursively "pk" pk)
2b63e54b
RW
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"))
3c4f1ec7
RW
758 #t))))))
759 (native-inputs
760 `(("texlive-bin" ,texlive-bin)
0512ae30 761 ("texlive-metafont-base" ,texlive-metafont-base)))
b8d8806b 762 (home-page "https://www.ctan.org/pkg/cm")
3c4f1ec7
RW
763 (synopsis "Computer Modern fonts for TeX")
764 (description "This package provides the Computer Modern fonts by Donald
765Knuth. The Computer Modern font family is a large collection of text,
766display, and mathematical fonts in a range of styles, based on Monotype Modern
7678A.")
768 (license license:knuth)))
769
cdc96092
RW
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
4e9242aa
RW
794the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded Concrete,
795T1/TS1-encoded CM bright and LH Cyrillic fonts (thus supporting all European
796languages except Greek), and bringing many ameliorations in typesetting
797quality. The fonts exhibit the same metrics as the METAFONT-encoded
798originals.")
cdc96092
RW
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))
4e9242aa 804
114a5d85 805(define-public texlive-lm
c2a1fe4a 806 (package
114a5d85
RW
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))
c2a1fe4a
RW
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
824Modern fonts designed by Donald E. Knuth and described in Volume E of his
825Computers & 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
114a5d85
RW
831(define-public texlive-fonts-lm
832 (deprecated-package "texlive-fonts-lm" texlive-lm))
833
5ebba61a
RW
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)))
6b286e42 845 (file-name (string-append name "-" version "-checkout"))
5ebba61a
RW
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")
96f5377d
RW
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))
5ebba61a
RW
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
898from Donald Knuth, including the plain format, plain base, and the MF logo
899fonts.")
900 (license license:knuth)))
901
a00d5933
RW
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)))
a4550e7d 913 (file-name (string-append name "-" version "-checkout"))
a00d5933
RW
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")
806faaab
MW
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))
a00d5933
RW
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)))
b8d8806b 970 (home-page "https://www.ctan.org/pkg/latex-fonts")
a00d5933
RW
971 (synopsis "Collection of fonts used in LaTeX distributions")
972 (description "This is a collection of fonts for use with standard LaTeX
973packages and classes. It includes invisible fonts (for use with the slides
974class), line and circle fonts (for use in the picture environment) and LaTeX
975symbol fonts.")
976 (license license:lppl1.2+)))
977
6072f82a
RW
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
995Knuthian mflogo fonts described in The Metafontbook and to typeset Metafont
996logos in LaTeX documents.")
997 (license license:lppl)))
998
cd957f4f 999(define-public texlive-mflogo-font
01cf8c89 1000 (package
cd957f4f
RW
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))
01cf8c89
RW
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.
1014At some stage, the letters P and S were added, so that the METAPOST logo could
1015also be expressed. The fonts were originally issued (of course) as METAFONT
1016source; they have since been autotraced and reissued in Adobe Type 1 format by
1017Taco Hoekwater.")
1018 (license license:knuth)))
1019
cd957f4f
RW
1020(define-public texlive-fonts-mflogo-font
1021 (deprecated-package "texlive-fonts-mflogo-font" texlive-mflogo-font))
1022
98b4aca1
RW
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)))
5fe9233e 1034 (file-name (string-append name "-" version "-checkout"))
98b4aca1
RW
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)
fe2bfabe 1042 (ice-9 match)
98b4aca1
RW
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)
fe2bfabe 1051 (let ((mf (assoc-ref inputs "texlive-union"))
98b4aca1 1052 (cwd (getcwd)))
db6609bd
DM
1053 ;; Make METAFONT reproducible
1054 (setenv "SOURCE_DATE_EPOCH" "1")
98b4aca1
RW
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")
2762023a
MW
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$"))
fe2bfabe
RW
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)))))
2762023a 1136 #t))
98b4aca1 1137 (replace 'install
24d0c4d0 1138 (lambda* (#:key inputs outputs #:allow-other-keys)
fe2bfabe
RW
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)))))))
98b4aca1 1159 (native-inputs
fe2bfabe
RW
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"))))
24d0c4d0
RW
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
fe2bfabe
RW
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"))))))
b8d8806b 1211 (home-page "https://www.ctan.org/pkg/amsfonts")
98b4aca1
RW
1212 (synopsis "TeX fonts from the American Mathematical Society")
1213 (description
1214 "This package provides an extended set of fonts for use in mathematics,
1215including: extra mathematical symbols; blackboard bold letters (uppercase
1216only); fraktur letters; subscript sizes of bold math italic and bold Greek
1217letters; subscript sizes of large symbols such as sum and product; added sizes
1218of the Computer Modern small caps font; cyrillic fonts (from the University of
1219Washington); Euler mathematical fonts. All fonts are provided as Adobe Type 1
1220files, and all except the Euler fonts are provided as Metafont source. The
1221distribution also includes the canonical Type 1 versions of the Computer
1222Modern family of fonts. The Euler fonts are supported by separate packages;
1223details can be found in the documentation.")
1224 (license license:silofl1.1)))
1225
137f9cbc
RW
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"))
9700a0d0 1233 (file-name (string-append name "-" version "-checkout"))
137f9cbc
RW
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)))
b8d8806b 1242 (home-page "https://www.ctan.org/pkg/amsfonts")
137f9cbc
RW
1243 (synopsis "TeX fonts from the American Mathematical Society")
1244 (description
1245 "This package provides basic LaTeX support for the symbol fonts provides
1246by the amsfonts package. It provides @code{amsfonts.sty}, with names of
1247individual symbols defined in @code{amssymb.sty}.")
1248 (license license:silofl1.1)))
1249
e4c5481d
RW
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
1265hyphenation patterns, with definition of letter sets and template-like
1266constructions. It also provides an easy way to handle different input and
1267output encodings, and features generation of clean UTF-8 patterns.")
1268 (license license:lppl)))
1269
566e95f7
RW
1270;; This provides etex.src which is needed to build various formats, including
1271;; luatex.fmt and pdflatex.fmt
1e39065d
RW
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
1324running as if it were TeX unmodified). E-TeX has been specified by the LaTeX
1325team as the engine for the development of LaTeX2e; as a result, LaTeX
1326programmers may assume e-TeX functionality. The pdftex engine directly
1327incorporates the e-TeX extensions.")
1328 (license license:knuth))))
1329
566e95f7
RW
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)))
b63aefe5 1341 (file-name (string-append name "-" version "-checkout"))
566e95f7
RW
1342 (sha256
1343 (base32
d4d9a1ec 1344 "1xknlb3gcw6jjqh97bhghxi594bzpj1zfzzfsrr9pvr9s1bx7dnf"))))
566e95f7
RW
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
1360TeXbook, together with various supporting files (some also discussed in the
1361book).")
1362 (license license:knuth)))
1363
df73a3d3
RW
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
1373language.")
1374 (license license:lppl1.3+)))
1375
619ca023
RW
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
1387Greek.")
1388 (license license:lppl1.3+)))
1389
a361f412
RW
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
1422language.")
1423 ;; Any version of the LGPL.
1424 (license license:lgpl3+))))
1425
0ddbc25c
RW
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
1458language.")
1459 ;; "Free for any purpose".
1460 (license (license:fsf-free
1461 "/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb")))))
1462
92266796
RW
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
1472language.")
1473 (license license:expat)))
1474
7ffc3105
RW
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
1486language 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
cbc7e109
RW
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
1500T1/EC and UTF-8 encodings.")
1501 (license license:lppl1.0+)))
1502
9ebce8fc
RW
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
1512Chinese pinyin T1/EC and UTF-8 encodings.")
1513 (license license:gpl2+)))
0ddbc25c 1514
beed8377
RW
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
1524Slavonic in UTF-8 encoding.")
1525 (license license:expat)))
1526
1b1d8577
RW
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
1537UTF-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
9b65c611
RW
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
1550T1/EC and UTF-8 encodings.")
1551 (license license:lppl1.0+)))
1552
b5b2ef6e
RW
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
1562and UTF-8 encodings.")
1563 (license license:gpl2+)))
1564
3889b022
RW
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
1574T1/EC and UTF-8 encodings.")
1575 ;; Either LPPL 1.3 or later, or Expat
1576 (license (list license:lppl1.3+ license:expat))))
1577
402b835f
RW
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
1587and UTF-8 encodings.")
1588 (license license:lppl1.0+)))
1589
ab8f6de6
RW
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
1600American 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
d7c80395
RW
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
1614Latin 3 and UTF-8 encodings.")
1615 (license license:lppl1.0+)))
1616
5f229484
RW
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
1626T1/EC and UTF-8 encodings.")
1627 ;; Dual licensed under either license.
1628 (license (list license:lppl1.3+ license:expat))))
1629
54ef221c
RW
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
1676written using the Ethiopic script for Unicode engines. They are not supposed
1677to be linguistically relevant in all cases and should, for proper typography,
1678be replaced by files tailored to individual languages.")
1679 (license license:lppl))))
1680
bac10d82
RW
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
1690T1/EC and UTF-8 encodings.")
1691 (license license:public-domain)))
1692
a14ffed2
RW
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
1702T1/EC and UTF-8 encodings.")
1703 (license license:expat)))
1704
28fbf42a
RW
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
1714ASCII encodings.")
1715 (license license:lppl1.3+)))
1716
8d87184b
RW
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
1761T1/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
b2334b6e
RW
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
1774T8M, T8K, and UTF-8 encodings.")
1775 (license license:lppl1.3+)))
1776
6028620d
RW
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
1792T1/EC and UTF-8 encodings, for traditional and reformed spelling, including
1793Swiss 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
65e4cfd1
RW
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
1811in monotonic and polytonic spelling in LGR and UTF-8 encodings.")
1812 (license license:lppl)))
1813
36f03c33
RW
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
1825T1/EC and UTF-8 encodings.")
1826 ;; Any of these licenses
1827 (license (list license:gpl2 license:lgpl2.1+ license:mpl1.1))))
1828
33a446e6
RW
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
1838T1/EC and UTF-8 encodings.")
1839 (license license:lppl1.2+)))
1840
825285d8
RW
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,
1861Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil
1862and Telugu for Unicode engines.")
1863 (license license:expat)))
1864
b6832d79
RW
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
1874Indonesian (Bahasa Indonesia) in ASCII encoding. They are probably also
1875usable for Malay (Bahasa Melayu).")
1876 (license license:gpl2)))
1877
9535f149
RW
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
1887in ASCII encoding.")
1888 (license license:lppl1.3+)))
1889
88963a8e
RW
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
1899Irish (Gaeilge) in T1/EC and UTF-8 encodings.")
1900 ;; Either of these licenses
1901 (license (list license:gpl2+ license:expat))))
1902
e33250e4
RW
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
1912ASCII encoding. Compliant with the Recommendation UNI 6461 on hyphenation
1913issued by the Italian Standards Institution (Ente Nazionale di Unificazione
1914UNI).")
1915 (license license:lppl1.3+)))
1916
0b344257
RW
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
1926Kurmanji (Northern Kurdish) as spoken in Turkey and by the Kurdish diaspora in
1927Europe, in T1/EC and UTF-8 encodings.")
1928 (license license:lppl1.3)))
1929
2f3a07c6
RW
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
1941T1/EC and UTF-8 encodings, mainly in modern spelling (u when u is needed and v
1942when 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.
1944Apparently there is no conflict between the patterns of modern Latin and those
1945of medieval Latin. It also includes hyphenation patterns for the Classical
1946Latin in T1/EC and UTF-8 encodings. Classical Latin hyphenation patterns are
1947different from those of 'plain' Latin, the latter being more adapted to modern
1948Latin. It also provides hyphenation patterns for the Liturgical Latin in
1949T1/EC and UTF-8 encodings.")
1950 ;; Either of these licenses
1951 (license (list license:lppl1.0+ license:expat))))
1952
e8effd27
RW
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
1962L7X and UTF-8 encodings.")
1963 ;; Either of these licenses.
1964 (license (list license:gpl2 license:lgpl2.1))))
1965
af0e6cc8
RW
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
1975L7X 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
1890799b
RW
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
1990T2A, LMC and UTF-8 encodings.")
1991 ;; Either of these licenses
1992 (license (list license:lppl1.3+ license:expat))))
1993
da2b2d49
RW
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
2005Bokmal 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
033406ad
RW
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
2019T1/EC and UTF-8 encodings. They are supposed to be valid for all the Occitan
2020variants spoken and written in the wide area called 'Occitanie' by the French.
2021It ranges from the Val d'Aran within Catalunya, to the South Western Italian
2022Alps encompassing the southern half of the French pentagon.")
2023 (license license:lppl1.0+)))
2024
db3f7fda
RW
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
2034in ASCII encoding. Compliant with 'Gramatica dla lengua piemonteisa' by
2035Camillo Brero.")
2036 (license license:lppl1.3+)))
2037
9c451e77
RW
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
2047and UTF-8 encodings.")
2048 ;; No differing license declared, so we choose the project license.
2049 (license license:lppl)))
2050
5fd12ffb
RW
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
2060T1/EC and UTF-8 encodings.")
2061 (license license:bsd-3)))
2062
6fa3b112
RW
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
2072T1/EC and UTF-8 encodings.")
2073 ;; No differing license declared, so we choose the project license.
2074 (license license:lppl)))
2075
c4abd4a2
RW
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
2085ASCII encodings. They are supposed to comply with the rules indicated by the
2086Lia Rumantscha (Romansh language society).")
2087 (license license:lppl1.3+)))
2088
483d8af6
RW
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
2098T2A and UTF-8 encodings.")
2099 (license license:lppl1.2+)))
2100
19e31f91
RW
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
2111Prakrit in longdesc transliteration, and in Devanagari, Bengali, Kannada,
2112Malayalam 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
67c7900e
RW
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
2128T1/EC, T2A and UTF-8 encodings.")
2129 ;; Any version of the GPL.
2130 (license license:gpl3+)))
2131
af13345a
RW
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
2141T1/EC and UTF-8 encodings.")
2142 (license license:gpl2+)))
2143
3cd8868f
RW
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
2153T1/EC and UTF-8 encodings.")
2154 ;; Either license
2155 (license (list license:lppl1.0+ license:expat))))
2156
40b009b8
RW
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
2169T1/EC and UTF-8 encodings.")
2170 (license license:expat)))
2171
1e7db181
RW
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
2181T1/EC and UTF-8 encodings.")
2182 (license license:lppl1.2+)))
2183
3eaee8fb
RW
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
2193and UTF-8 encodings.")
2194 (license license:lppl1.3+)))
2195
e80ecb7b
RW
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
2228T1/EC and UTF-8 encodings. The patterns for Turkish were first produced for
2229the Ottoman Texts Project in 1987 and were suitable for both Modern Turkish
2230and Ottoman Turkish in Latin script, however the required character set didn't
2231fit into EC encoding, so support for Ottoman Turkish had to be dropped to keep
2232compatibility with 8-bit engines.")
2233 (license license:lppl1.0+))))
2234
5f50dd95
RW
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
2267T1/EC and UTF-8 encodings.")
2268 (license license:public-domain))))
2269
cf8f4e1b
RW
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
2279T2A and UTF-8 encodings.")
2280 ;; No version specified
2281 (license license:lppl)))
2282
71e58125
RW
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
2292in T1/EC and UTF-8 encodings.")
2293 (license license:lppl1.3a+)))
2294
0d4088e4
RW
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
2304T1/EC and UTF-8 encodings.")
2305 ;; Either license
2306 (license (list license:lppl1.0+ license:expat))))
2307
5153431c
RW
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
2425hyphenation patterns in UTF-8 format, whereas older systems require
2426hyphenation patterns in the 8-bit encoding of the font in use (such encodings
2427are codified in the LaTeX scheme with names like OT1, T2A, TS1, OML, LY1,
2428etc). The present package offers a collection of conversions of existing
2429patterns to UTF-8 format, together with converters for use with 8-bit fonts in
2430older systems. Since hyphenation patterns for Knuthian-style TeX systems are
2431only read at iniTeX time, it is hoped that the UTF-8 patterns, with their
2432converters, 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
e68c7091
RW
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
2471the German language, covering both traditional and reformed orthography. The
2472patterns can be used with packages Babel and hyphsubst from the Oberdiek
2473bundle.")
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
10e8b338
RW
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
2493Ukrainian, depending on the encoding of the output font including the standard
2494T2A.")
2495 (license license:lppl)))
2496
c87d8a14
RW
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
2532patterns supporting a number of Cyrillic font encodings, including T2,
2533UCY (Omega Unicode Cyrillic), LCY, LWN (OT2), and koi8-r.")
2534 (license license:lppl))))
2535
57680dc2
RW
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
2547formats.")
2548 (license license:lppl)))
2549
010f476f
RW
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)))
8d514ae7
EF
2560 (file-name (string-append "texlive-generic-"
2561 (last (string-split
2562 (string-drop-right dir 1) #\/))
2563 "-" (number->string %texlive-revision)
2564 "-checkout"))
010f476f
RW
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"))
8d514ae7 2572 (file-name (string-append name "-" version "-checkout"))
010f476f
RW
2573 (sha256
2574 (base32
d4d9a1ec 2575 "17bqrzzjz16k52sc7ydl4vw7ddy2z3g0p1xsk2c35h1ynq9h3wwm"))))
010f476f
RW
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
6858ade2
RW
2602 (map (match-lambda ((_ . dir) dir)) inputs)
2603 "//:")))
010f476f
RW
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")
4f2f53f9
MW
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))
010f476f 2641 (replace 'install
756fc3e1 2642 (lambda* (#:key inputs outputs #:allow-other-keys)
010f476f
RW
2643 (let* ((out (assoc-ref outputs "out"))
2644 (target (string-append
2645 out "/share/texmf-dist/tex/latex/base"))
2646 (web2c (string-append
756fc3e1
PN
2647 out "/share/texmf-dist/web2c"))
2648 (support-files (assoc-ref inputs "texlive-latex-base-support-files")))
010f476f
RW
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" ".*"))
bd6e2385
RW
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"))
756fc3e1
PN
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"))
d68c8017
RW
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"))
010f476f
RW
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"))
010f476f
RW
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/"
d4d9a1ec 2704 "1v90iihy112q93zdpblpdk8zv8rf99fgslsg06s1sxm27zjm9nap"))
756fc3e1
PN
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
d4d9a1ec 2716 "18wy8dlcw8adl6jzqwbg54pdwlhs8hilnfvqbw6ikj6y3zhqkj7q"))))
010f476f
RW
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)))
d68c8017
RW
2721 (propagated-inputs
2722 `(("texlive-generic-hyph-utf8" ,texlive-generic-hyph-utf8)))
b8d8806b 2723 (home-page "https://www.ctan.org/pkg/latex-base")
010f476f
RW
2724 (synopsis "Base sources of LaTeX")
2725 (description
2726 "This bundle comprises the source of LaTeX itself, together with several
2727packages which are considered \"part of the kernel\". This bundle, together
2728with the required packages, constitutes what every LaTeX distribution should
2729contain.")
2730 (license license:lppl1.3c+))))
2731
3e485ed2
RW
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"))
7e353a77 2739 (file-name (string-append name "-" version "-checkout"))
3e485ed2
RW
2740 (sha256
2741 (base32
2742 "0swkbxv8vg0yizadfnvrwjb4cj0pn34v9wm6v7wqq903fdav7k7q"))))
2743 (build-system texlive-build-system)
2744 (arguments '(#:tex-directory "latex/filecontents"))
b8d8806b 2745 (home-page "https://www.ctan.org/pkg/filecontents")
3e485ed2
RW
2746 (synopsis "Extended filecontents and filecontents* environments")
2747 (description
2748 "LaTeX2e's @code{filecontents} and @code{filecontents*} environments
2749enable a LaTeX source file to generate external files as it runs through
2750LaTeX. However, there are two limitations of these environments: they refuse
2751to overwrite existing files, and they can only be used in the preamble of a
2752document. The filecontents package removes these limitations, letting you
2753overwrite existing files and letting you use @code{filecontents} /
2754@code{filecontents*} anywhere.")
2755 (license license:lppl1.3c+)))
2756
1193aa89
RW
2757(define-public texlive-generic-ifxetex
2758 (package
2759 (name "texlive-generic-ifxetex")
fea8eef3 2760 (version (number->string %texlive-revision))
1193aa89
RW
2761 (source (origin
2762 (method svn-fetch)
2763 (uri (texlive-ref "generic" "ifxetex"))
24dbc602 2764 (file-name (string-append name "-" version "-checkout"))
1193aa89
RW
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)))
b8d8806b 2774 (home-page "https://www.ctan.org/pkg/ifxetex")
1193aa89
RW
2775 (synopsis "Am I running under XeTeX?")
2776 (description
2777 "This is a simple package which provides an @code{\\ifxetex} conditional,
2778so that other code can determine that it is running under XeTeX. The package
beb476ed 2779requires the e-TeX extensions to the TeX primitive set.")
1193aa89
RW
2780 (license license:lppl1.3c+)))
2781
f104ff61 2782(define-public texlive-epsf
9186c156 2783 (package
f104ff61
RW
2784 (inherit (simple-texlive-package
2785 "texlive-epsf"
2786 (list "/doc/generic/epsf/"
2787 "/tex/generic/epsf/")
2788 (base32
2789 "03jcf0kqh47is965d2590miwj7d5kif3c4mgsnvkyl664jzjkh92")
2790 #:trivial? #t))
b8d8806b 2791 (home-page "https://www.ctan.org/pkg/epsf")
9186c156
RW
2792 (synopsis "Simple macros for EPS inclusion")
2793 (description
2794 "This package provides the original (and now obsolescent) graphics
2795inclusion macros for use with dvips, still widely used by Plain TeX users (in
2796particular). For LaTeX users, the package is nowadays (rather strongly)
2797deprecated in favour of the more sophisticated standard LaTeX latex-graphics
2798bundle of packages. (The latex-graphics bundle is also available to Plain TeX
2799users, via its Plain TeX version.)")
2800 (license license:public-domain)))
2801
f104ff61
RW
2802(define-public texlive-generic-epsf
2803 (deprecated-package "texlive-generic-epsf" texlive-epsf))
2804
437822a1
RW
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"))
88e11022 2812 (file-name (string-append name "-" version "-checkout"))
437822a1
RW
2813 (sha256
2814 (base32
2815 "03l7140y031rr14h02i4z9zqsfvrbn7wzwxbjsrjcgrk6sdr71wv"))))
2816 (build-system texlive-build-system)
2817 (arguments
2818 '(#:tex-directory "latex/fancyvrb"
bae65dc4 2819 #:tex-format "latex"))
b8d8806b 2820 (home-page "https://www.ctan.org/pkg/fancyvrb")
437822a1
RW
2821 (synopsis "Sophisticated verbatim text")
2822 (description
2823 "This package provides tools for the flexible handling of verbatim text
2824including: verbatim commands in footnotes; a variety of verbatim environments
2825with many parameters; ability to define new customized verbatim environments;
2826save and restore verbatim text and environments; write and read files in
2827verbatim mode; build \"example\" environments (showing both result and
2828verbatim source).")
2829 (license license:lppl1.0+)))
2830
f1b0939d
RW
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},
2845and @file{dvisvgm.def} driver option files for the LaTeX graphics and color
2846packages.")
2847 (license license:lppl1.3c+)))
2848
83a5c617
RW
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
2862set default \"driver\" options for the color and graphics packages.")
2863 (license license:public-domain)))
2864
4eebd2cd
RW
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"))
f7302073 2872 (file-name (string-append name "-" version "-checkout"))
4eebd2cd
RW
2873 (sha256
2874 (base32
d4d9a1ec 2875 "0nlfhn55ax89rcvpkrl9570671b62kcr4c9l5ch3w5zw9vmi00dz"))))
4eebd2cd 2876 (build-system texlive-build-system)
152950d4
RW
2877 (arguments '(#:tex-directory "latex/graphics"))
2878 (propagated-inputs
2879 `(("texlive-graphics-cfg" ,texlive-graphics-cfg)
2880 ("texlive-graphics-def" ,texlive-graphics-def)))
b8d8806b 2881 (home-page "https://www.ctan.org/pkg/latex-graphics")
4eebd2cd
RW
2882 (synopsis "LaTeX standard graphics bundle")
2883 (description
2884 "This is a collection of LaTeX packages for producing color, including
2885graphics (e.g. PostScript) files, and rotation and scaling of text in LaTeX
2886documents. It comprises the packages color, graphics, graphicx, trig, epsfig,
2887keyval, and lscape.")
152950d4 2888 (license license:lppl1.3c+)))
4eebd2cd 2889
f5a6af42
RW
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"))
19389bcd 2897 (file-name (string-append name "-" version "-checkout"))
f5a6af42
RW
2898 (sha256
2899 (base32
2900 "01n613s7bcrd2n4jfawm0k4nn2ny3aaifp2jjfif3lz4sbv31494"))))
2901 (build-system texlive-build-system)
2902 (arguments '(#:tex-directory "latex/xcolor"))
b8d8806b 2903 (home-page "https://www.ctan.org/pkg/xcolor")
f5a6af42
RW
2904 (synopsis "Driver-independent color extensions for LaTeX and pdfLaTeX")
2905 (description
2906 "The package starts from the basic facilities of the colorcolor package,
2907and provides easy driver-independent access to several kinds of color tints,
2908shades, tones, and mixes of arbitrary colors. It allows a user to select a
2909document-wide target color model and offers complete tools for conversion
2910between eight color models. Additionally, there is a command for alternating
2911row colors plus repeated non-aligned material (like horizontal lines) in
2912tables.")
2913 (license license:lppl1.2+)))
2914
4d660fdf
RW
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"))
2a0bcbf4
RW
2931 (propagated-inputs
2932 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek) ; for ltxcmds.sty
2933 ("texlive-latex-url" ,texlive-latex-url)))
b8d8806b 2934 (home-page "https://www.ctan.org/pkg/hyperref")
4d660fdf
RW
2935 (synopsis "Extensive support for hypertext in LaTeX")
2936 (description
c5a8ecb6
RW
2937 "The @code{hyperref} package is used to handle cross-referencing commands
2938in LaTeX to produce hypertext links in the document. The package provides
2939backends for the @code{\\special} set defined for HyperTeX DVI processors; for
2940embedded @code{pdfmark} commands for processing by Acrobat
2941Distiller (@code{dvips} and Y&Y's @code{dvipsone}); for Y&Y's @code{dviwindo};
2942for PDF control within pdfTeX and @code{dvipdfm}; for TeX4ht; and for VTeX's
2943pdf 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}.")
4d660fdf
RW
2945 (license license:lppl1.3+)))
2946
c3455b7d
RW
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"))
7dea3119 2954 (file-name (string-append name "-" version "-checkout"))
c3455b7d
RW
2955 (sha256
2956 (base32
d4d9a1ec 2957 "1m9fg8ddhpsl1212igr9a9fmj012lv780aghjn6fpidg2wqrffmn"))))
c3455b7d
RW
2958 (build-system texlive-build-system)
2959 (arguments
2960 '(#:tex-directory "latex/oberdiek"
05d28068 2961 #:build-targets '("oberdiek.ins")
c3455b7d
RW
2962 #:phases
2963 (modify-phases %standard-phases
05d28068 2964 ;; "ifpdf.ins" is not generated, so we need to process the dtx file.
c3455b7d
RW
2965 (add-after 'unpack 'do-not-process-ifpdf.ins
2966 (lambda _
2967 (substitute* "oberdiek.ins"
05d28068 2968 (("ifpdf.ins") "ifpdf.dtx"))
c3455b7d 2969 #t)))))
a9cd7b03
RW
2970 (propagated-inputs
2971 `(("texlive-generic-ifxetex" ,texlive-generic-ifxetex)))
b8d8806b 2972 (home-page "https://www.ctan.org/pkg/oberdiek")
c3455b7d
RW
2973 (synopsis "Bundle of packages submitted by Heiko Oberdiek")
2974 (description
2975 "The bundle comprises various LaTeX packages, providing among others:
2976better accessibility support for PDF files; extensible chemists reaction
2977arrows; record information about document class(es) used; and many more.")
2978 (license license:lppl1.3+)))
2979
f2536af2
RW
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"))
f8340ab1 2987 (file-name (string-append name "-" version "-checkout"))
f2536af2
RW
2988 (sha256
2989 (base32
d4d9a1ec 2990 "0vj7h1fgf1396h4qjdc2m07y08i54gbbfrxl8y327cn3r1n093s6"))))
f2536af2
RW
2991 (build-system texlive-build-system)
2992 (arguments
2993 '(#:tex-directory "latex/tools"
2994 #:build-targets '("tools.ins")))
b8d8806b 2995 (home-page "https://www.ctan.org/pkg/latex-tools")
f2536af2
RW
2996 (synopsis "LaTeX standard tools bundle")
2997 (description
2998 "This package is a collection of (variously) simple tools provided as
2999part of the LaTeX required tools distribution, comprising the following
3000packages: afterpage, array, bm, calc, dcolumn, delarray, enumerate, fileerr,
3001fontsmpl, ftnright, hhline, indentfirst, layout, longtable, multicol,
3002rawfonts, showkeys, somedefs, tabularx, theorem, trace, varioref, verbatim,
3003xr, and xspace.")
3004 (license license:lppl1.3+)))
3005
c97d1a91 3006(define-public texlive-url
35adcc3a 3007 (package
c97d1a91
RW
3008 (inherit (simple-texlive-package
3009 "texlive-url"
3010 (list "/doc/latex/url/"
3011 "/tex/latex/url/")
3012 (base32
3013 "184m40wgnx939ky2hbxnj0v9aak023ldrhgffp0lgyk9wdqpxlqg")
3014 #:trivial? #t))
35adcc3a
RW
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
3018allows linebreaks at certain characters or combinations of characters, accepts
3019reconfiguration, and can usually be used in the argument to another command.
3020The command is intended for email addresses, hypertext links,
3021directories/paths, etc., which normally have no spaces, so by default the
3022package ignores spaces in its argument. However, a package option allows
3023spaces, which is useful for operating systems where spaces are a common part
3024of 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
c97d1a91
RW
3029(define-public texlive-latex-url
3030 (deprecated-package "texlive-latex-url" texlive-url))
3031
a5b1ef84
RW
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"))
f4a39a5b 3039 (file-name (string-append name "-" version "-checkout"))
a5b1ef84
RW
3040 (sha256
3041 (base32
d4d9a1ec 3042 "0p3fsxap1ilwjz356aq4s5ygwvdscis8bh93g8klf8mhrd8cr2jy"))))
a5b1ef84
RW
3043 (build-system texlive-build-system)
3044 (arguments
3045 '(#:tex-directory "latex/l3kernel"))
b8d8806b 3046 (home-page "https://www.ctan.org/pkg/l3kernel")
a5b1ef84
RW
3047 (synopsis "LaTeX3 programmers’ interface")
3048 (description
3049 "The l3kernel bundle provides an implementation of the LaTeX3
3050programmers’ interface, as a set of packages that run under LaTeX 2e. The
3051interface provides the foundation on which the LaTeX3 kernel and other future
3052code are built: it is an API for TeX programmers. The packages are set up so
3053that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
3054 (license license:lppl1.3c+)))
3055
cc09d48b
RW
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"))
b749aa98 3063 (file-name (string-append name "-" version "-checkout"))
cc09d48b
RW
3064 (sha256
3065 (base32
d4d9a1ec 3066 "0pyx0hffiyss363vv7fkrcdiaf7p099xnq0mngzqc7v8v9q849hs"))))
cc09d48b
RW
3067 (build-system texlive-build-system)
3068 (arguments
3069 '(#:tex-directory "latex/l3packages"
3d4908a7
PN
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")
cc09d48b
RW
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:"
3d4908a7
PN
3085 cwd "/xtemplate"
3086 ;; The terminating ":" is required to include the
3087 ;; l3kernel input as well.
3088 ":")))
3089 #t)))
3090 ))
2fea7041 3091 (propagated-inputs
cc09d48b 3092 `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
b8d8806b 3093 (home-page "https://www.ctan.org/pkg/l3packages")
cc09d48b
RW
3094 (synopsis "High-level LaTeX3 concepts")
3095 (description
3096 "This bundle holds prototype implementations of concepts for a LaTeX
3097designer interface, to be used with the experimental LaTeX kernel as
3098programming 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
58308491
RW
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"))
634a4a7f 3118 (file-name (string-append name "-" version "-checkout"))
58308491
RW
3119 (sha256
3120 (base32
d4d9a1ec 3121 "1p0mkn6iywl0k4m9cx3hnhylpi499inisff3f72pcf349baqsnvq"))))
58308491
RW
3122 (build-system texlive-build-system)
3123 (arguments
9c45beb4
RW
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)))))
b80ecc5a
RW
3153 (propagated-inputs
3154 `(("texlive-latex-l3packages" ,texlive-latex-l3packages)))
b8d8806b 3155 (home-page "https://www.ctan.org/pkg/fontspec")
58308491
RW
3156 (synopsis "Advanced font selection in XeLaTeX and LuaLaTeX")
3157 (description
3158 "Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
3159automatic and unified interface to feature-rich AAT and OpenType fonts through
3160the NFSS in LaTeX running on XeTeX or LuaTeX engines. The package requires
3161the l3kernel and xparse bundles from the LaTeX 3 development team.")
3162 (license license:lppl1.3+)))
3163
e93f472d
RW
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"))
01d79c30 3176 (file-name (string-append name "-" version ".zip"))
e93f472d
RW
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.
3197The bundle is based on Lua modules shipped with ConTeXt, and made available in
3198this bundle for use independent of ConTeXt.")
3199 ;; GPL version 2 only
3200 (license license:gpl2)))
3201
769bb5e5
RW
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
3287Plain and LaTeX formats. It allows OpenType fonts to be loaded with font
3288features accessible using an extended font request syntax while providing
3289compatibilitywith XeTeX. By indexing metadata in a database it facilitates
3290loading fonts by their proper names instead of file names.")
3291 ;; GPL version 2 only
3292 (license license:gpl2)))
3293
2573163a
RW
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"))
320c771a 3301 (file-name (string-append name "-" version "-checkout"))
2573163a
RW
3302 (sha256
3303 (base32
d4d9a1ec 3304 "0arvk7gn32mshnfdad5qkgf3i1arxq77k3vq7wnpm4nwnrzclxal"))))
2573163a
RW
3305 (build-system texlive-build-system)
3306 (arguments '(#:tex-directory "latex/amsmath"))
b8d8806b 3307 (home-page "https://www.ctan.org/pkg/amsmath")
2573163a
RW
3308 (synopsis "AMS mathematical facilities for LaTeX")
3309 (description
3310 "This is the principal package in the AMS-LaTeX distribution. It adapts
3311for use in LaTeX most of the mathematical features found in AMS-TeX; it is
3312highly recommended as an adjunct to serious mathematical typesetting in LaTeX.
3313When amsmath is loaded, AMS-LaTeX packages @code{amsbsyamsbsy} (for bold
3314symbols), @code{amsopnamsopn} (for operator names) and
3315@code{amstextamstext} (for text embedded in mathematics) are also loaded.
3316This package is part of the LaTeX required distribution; however, several
3317contributed packages add still further to its appeal; examples are
3318@code{empheqempheq}, which provides functions for decorating and highlighting
3319mathematics, and @code{ntheoremntheorem}, for specifying theorem (and similar)
3320definitions.")
3321 (license license:lppl1.3c+)))
3322
18e366e8
RW
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"))
43059ed0 3330 (file-name (string-append name "-" version "-checkout"))
18e366e8
RW
3331 (sha256
3332 (base32
d4d9a1ec 3333 "0c2j9xh4qpi0x1vvcxdjxq6say0zhyr569fryi5cmhp8bclh4kca"))))
18e366e8
RW
3334 (build-system texlive-build-system)
3335 (arguments
3336 `(#:tex-directory "latex/amscls"))
b8d8806b 3337 (home-page "https://www.ctan.org/pkg/amscls")
18e366e8
RW
3338 (synopsis "AMS document classes for LaTeX")
3339 (description
3340 "This bundle contains three AMS classes: @code{amsartamsart} (for writing
3341articles for the AMS), @code{amsbookamsbook} (for books) and
3342@code{amsprocamsproc} (for proceedings), together with some supporting
3343material. The material is made available as part of the AMS-LaTeX
3344distribution.")
3345 (license license:lppl1.3c+)))
3346
f84d5a09
RW
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"))
8732493e 3354 (file-name (string-append name "-" version "-checkout"))
f84d5a09
RW
3355 (sha256
3356 (base32
d4d9a1ec 3357 "0yhlfiz3fjc8jd46f1zrjj4jig48l8rrzh8cmd8ammml8z9a01z6"))))
f84d5a09
RW
3358 (build-system texlive-build-system)
3359 (arguments
dcc8af4a 3360 '(#:tex-directory "generic/babel"
f84d5a09
RW
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)))))
b8d8806b 3370 (home-page "https://www.ctan.org/pkg/babel")
f84d5a09
RW
3371 (synopsis "Multilingual support for Plain TeX or LaTeX")
3372 (description
3373 "The package manages culturally-determined typographical (and other)
3374rules, and hyphenation patterns for a wide range of languages. A document may
3375select a single language to be supported, or it may select several, in which
3376case the document may switch from one language to another in a variety of
3377ways. Babel uses contributed configuration files that provide the detail of
3378what has to be done for each language. Users of XeTeX are advised to use the
3379polyglossia package rather than Babel.")
3380 (license license:lppl1.3+)))
3381
876a1980
RW
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"))
b8d8806b 3395 (home-page "https://www.ctan.org/pkg/babel-english")
876a1980
RW
3396 (synopsis "Babel support for English")
3397 (description
3398 "This package provides the language definition file for support of
3399English in @code{babel}. Care is taken to select British hyphenation patterns
3400for British English and Australian text, and default (\"american\") patterns
3401for Canadian and USA text.")
3402 (license license:lppl1.3+)))
3403
6309d215
RW
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
3421in @code{babel}. It provides all the necessary macros, definitions and
3422settings to typeset German documents. The bundle includes support for the
3423traditional and reformed German orthography as well as for the Austrian and
3424Swiss varieties of German.")
3425 (license license:lppl1.3+)))
3426
93286d38
RW
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"))
51bffe79 3434 (file-name (string-append name "-" version "-checkout"))
93286d38
RW
3435 (sha256
3436 (base32
d4d9a1ec 3437 "083xbwg7hrnlv47fkwvz8yjb830bhxx7y0mq7z7nz2f96y2ldr6b"))))
93286d38
RW
3438 (build-system texlive-build-system)
3439 (arguments
3440 '(#:tex-directory "latex/cyrillic"))
b8d8806b 3441 (home-page "https://www.ctan.org/pkg/latex-cyrillic")
93286d38
RW
3442 (synopsis "Support for Cyrillic fonts in LaTeX")
3443 (description
3444 "This bundle of macros files provides macro support (including font
3445encoding macros) for the use of Cyrillic characters in fonts encoded under the
3446T2* and X2 encodings. These encodings cover (between them) pretty much every
3447language that is written in a Cyrillic alphabet.")
3448 (license license:lppl1.3c+)))
3449
83fe6231
RW
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"))
b5b10f3b 3457 (file-name (string-append name "-" version "-checkout"))
83fe6231
RW
3458 (sha256
3459 (base32
3460 "1920dcq8613yzprasbg80fh4fcjcidvvl54wkx438nimyxcri7qz"))))
3461 (build-system texlive-build-system)
3462 (arguments '(#:tex-directory "latex/psnfss"))
b8d8806b 3463 (home-page "https://www.ctan.org/pkg/psnfss")
83fe6231
RW
3464 (synopsis "Font support for common PostScript fonts")
3465 (description
3466 "The PSNFSS collection includes a set of files that provide a complete
3467working setup of the LaTeX font selection scheme (NFSS2) for use with common
3468PostScript fonts. It covers the so-called \"Base\" fonts (which are built
3469into any Level 2 PostScript printing device and the Ghostscript interpreter)
3470and a number of free fonts. It provides font definition files, macros and
3471font metrics. The bundle as a whole is part of the LaTeX required set of
3472packages.")
3473 (license license:lppl1.2+)))
3474
bfcb9d4d
RW
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.
3509It 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
d7da2372 3519;; For use in package definitions only
cb7bc20a
RW
3520(define-public texlive-union
3521 (lambda* (#:optional (packages '()))
3522 "Return 'texlive-union' package which is a union of PACKAGES and the
3523standard LaTeX packages."
d7da2372
RW
3524 (let ((default-packages (match (package-propagated-inputs texlive-base)
3525 (((labels packages) ...) packages))))
3526 (package (inherit texlive-base)
cb7bc20a 3527 (name "texlive-union")
cb7bc20a
RW
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)
1a64a7b3 3539 (ice-9 popen)
cb7bc20a
RW
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")))
1a64a7b3
RW
3546 ;; Build a modifiable union of all inputs (but exclude bash and
3547 ;; the updmap.cfg file)
cb7bc20a
RW
3548 (match (filter (match-lambda
3549 ((name . _)
1a64a7b3 3550 (not (member name '("bash" "updmap.cfg")))))
cb7bc20a
RW
3551 %build-inputs)
3552 (((names . directories) ...)
3553 (union-build (assoc-ref %outputs "out")
3554 directories
c58d1b5f
RW
3555 #:create-all-directories? #t
3556 #:log-port (%make-void-port "w"))))
cb7bc20a
RW
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"))
1a64a7b3
RW
3567 (setenv "PATH" (string-append
3568 (assoc-ref %build-inputs "bash") "/bin:"
3569 (assoc-ref %build-inputs "coreutils") "/bin:"
3570 (string-append out "/bin")))
cb7bc20a
RW
3571 (for-each
3572 (cut wrap-program <>
476f7fce
RW
3573 `("TEXMFCNF" ":" suffix (,(dirname texmf.cnf)))
3574 `("TEXMF" ":" suffix (,(string-append out "/share/texmf-dist"))))
cb7bc20a 3575 (find-files (string-append out "/bin") ".*"))
1a64a7b3
RW
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"))
cb7bc20a
RW
3588 #t))))
3589 (inputs
3590 `(("bash" ,bash)
3591 ,@(map (lambda (package)
3592 (list (package-name package) package))
3593 (append default-packages packages))))
1a64a7b3
RW
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"))))))
cb7bc20a
RW
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
3611distribution.")
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
d7da2372 3621;; For use in package definitions only
9d4f8dc2
RW
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.
3627It includes little more than the required set of LaTeX packages.")))
3628
60b5e228
RW
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"))
b8d8806b 3642 (home-page "https://www.ctan.org/pkg/amsrefs")
60b5e228
RW
3643 (synopsis "LaTeX-based replacement for BibTeX")
3644 (description
3645 "Amsrefs is a LaTeX package for bibliographies that provides an archival
3646data format similar to the format of BibTeX database files, but adapted to
3647make direct processing by LaTeX easier. The package can be used either in
3648conjunction with BibTeX or as a replacement for BibTeX.")
3649 (license license:lppl1.3+)))
3650
3236599f
RW
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)))))
b8d8806b 3671 (home-page "https://www.ctan.org/pkg/bigfoot")
3236599f
RW
3672 (synopsis "Footnotes for critical editions")
3673 (description
3674 "This package aims to provide a one-stop solution to requirements for
3675footnotes. It offers: Multiple footnote apparatus superior to that of
3676@code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
3677into a single paragraph (this choice may be selected per footnote series);
3678Things you might have expected (such as @code{\\verb}-like material in
3679footnotes, and color selections over page breaks) now work. Note that the
3680majority of the bigfoot package's interface is identical to that of
3681@code{manyfoot}; users should seek information from that package's
3682documentation. The bigfoot bundle also provides the @code{perpage} and
3683@code{suffix} packages.")
3684 (license license:gpl2+)))
3685
8e732b49
RW
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"))
b8d8806b 3699 (home-page "https://www.ctan.org/pkg/blindtext")
8e732b49
RW
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
3704and packages, and @code{\\blinddocument}, @code{\\Blinddocument} for creating
3705an entire random document with sections, lists, mathematics, etc. The package
3706supports three languages, @code{english}, @code{(n)german} and @code{latin};
3707the @code{latin} option provides a short \"lorem ipsum\" (for a fuller \"lorem
3708ipsum\" text, see the @code{lipsum} package).")
3709 (license license:lppl)))
3710
7cda03bd
RW
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")
d4d9a1ec
RW
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")))
7cda03bd 3737 #t)))))
b8d8806b 3738 (home-page "https://www.ctan.org/pkg/dinbrief")
7cda03bd
RW
3739 (synopsis "German letter DIN style")
3740 (description
3741 "This package implements a document layout for writing letters according
3742to the rules of DIN (Deutsches Institut für Normung, German standardisation
3743institute). A style file for LaTeX 2.09 (with limited support of the
3744features) is part of the package. Since the letter layout is based on a
3745German standard, the user guide is written in German, but most macros have
3746English names from which the user can recognize what they are used for. In
3747addition there are example files showing how letters may be created with the
3748package.")
3749 (license license:lppl)))
3750
de224adb
RW
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"))
b8d8806b 3764 (home-page "https://www.ctan.org/pkg/draftwatermark")
de224adb
RW
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
3768every page or on the first page of a document. Typical usage may consist in
3769writing words such as DRAFT or CONFIDENTIAL across document pages. The
3770package performs a similar function to that of @code{draftcopy}, but its
3771implementation is output device independent, and made very simple by relying
3772on everypage.")
3773 (license license:lppl1.3+)))
3774
74e9c9a4
RW
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"))
b8d8806b 3788 (home-page "https://www.ctan.org/pkg/environ")
74e9c9a4
RW
3789 (synopsis "New interface for environments in LaTeX")
3790 (description
09acbb02
RW
3791 "This package provides the @code{\\collect@@body} command (as in
3792@code{amsmath}), as well as a @code{\\long} version @code{\\Collect@@Body},
3793for collecting the body text of an environment. These commands are used to
3794define a new author interface to creating new environments.")
74e9c9a4
RW
3795 (license license:lppl)))
3796
adfa7a2a
RW
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
d4d9a1ec 3807 "1ib5xdwcj5wk23wgk41m2hdcjr1dzrs4l3wwnpink9mlapz12wjs"))))
adfa7a2a
RW
3808 (build-system texlive-build-system)
3809 (arguments '(#:tex-directory "latex/eqparbox"))
b8d8806b 3810 (home-page "https://www.ctan.org/pkg/eqparbox")
adfa7a2a
RW
3811 (synopsis "Create equal-widthed parboxes")
3812 (description
3813 "LaTeX users sometimes need to ensure that two or more blocks of text
3814occupy 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
3816just like @code{\\parbox}, except that instead of specifying a width, one
3817specifies a tag. All @code{eqparbox}es with the same tag---regardless of
3818where 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
3820for a variety of alignment purposes, as is evidenced by the examples in
3821@code{eqparbox}'s documentation. Various derivatives of @code{\\eqparbox} are
3822also provided.")
3823 (license license:lppl1.3+)))
3824
32e623d0
RW
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)))))
b8d8806b 3846 (home-page "https://www.ctan.org/pkg/expdlist")
32e623d0
RW
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
3851also allows the user to \"break\" a list (for example, to interpose a comment)
3852without 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
1333198d 3856(define-public texlive-filemod
893e3fc1 3857 (package
1333198d
RW
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))
b8d8806b 3866 (home-page "https://www.ctan.org/pkg/filemod")
893e3fc1
RW
3867 (synopsis "Provide file modification times, and compare them")
3868 (description
3869 "This package provides macros to read and compare the modification dates
3870of files. The files may be @code{.tex} files, images or other files (as long
3871as they can be found by LaTeX). It uses the @code{\\pdffilemoddate} primitive
3872of pdfLaTeX to find the file modification date as PDF date string, parses the
3873string and returns the value to the user. The package will also work for DVI
3874output with recent versions of the LaTeX compiler which uses pdfLaTeX in DVI
3875mode. The functionality is provided by purely expandable macros or by faster
3876but non-expandable ones.")
3877 (license license:lppl1.3+)))
3878
1333198d
RW
3879(define-public texlive-latex-filemod
3880 (deprecated-package "texlive-latex-filemod" texlive-filemod))
3881
8c23f238
RW
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
d4d9a1ec 3892 "157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
8c23f238
RW
3893 (build-system texlive-build-system)
3894 (arguments '(#:tex-directory "latex/ifplatform"))
b8d8806b 3895 (home-page "https://www.ctan.org/pkg/ifplatform")
8c23f238
RW
3896 (synopsis "Conditionals to test which platform is being used")
3897 (description
3898 "This package uses the (La)TeX extension @code{-shell-escape} to
3899establish whether the document is being processed on a Windows or on a
3900Unix-like system, or on Cygwin (Unix environment over a Windows system).
3901Booleans provided are: @code{\\ifwindows}, @code{\\iflinux}, @code{\\ifmacosx}
3902and @code{\\ifcygwin}. The package also preserves the output of @code{uname}
3903on a Unix-like system, which may be used to distinguish between various
3904classes of systems.")
3905 (license license:lppl)))
3906
9b416042
RW
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"))
23ae6e65 3914 (file-name (string-append name "-" version "-checkout"))
9b416042
RW
3915 (sha256
3916 (base32
3917 "0aqliq0nwblxyrzhwhv77pnmk7qh2y3prgq7z7qhwcbgz5kisld7"))))
3918 (build-system texlive-build-system)
3919 (arguments '(#:tex-directory "latex/natbib"))
b8d8806b 3920 (home-page "https://www.ctan.org/pkg/natbib")
9b416042
RW
3921 (synopsis "Flexible bibliography support")
3922 (description
3923 "This bundle provides a package that implements both author-year and
3924numbered references, as well as much detailed of support for other
3925bibliography use. Also provided are versions of the standard BibTeX styles
3926that are compatible with @code{natbib}: @code{plainnat}, @code{unsrtnat},
3927@code{abbrnat}. The bibliography styles produced by @code{custom-bib} are
3928designed from the start to be compatible with @code{natbib}.")
3929 (license license:lppl)))
3930
d770d07f
RW
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"))
b8d8806b 3944 (home-page "https://www.ctan.org/pkg/psfrag")
d770d07f
RW
3945 (synopsis "Replace strings in encapsulated PostScript figures")
3946 (description
3947 "This package allows LaTeX constructions (equations, picture
3948environments, etc.) to be precisely superimposed over Encapsulated PostScript
3949figures, using your own favorite drawing tool to create an EPS figure and
3950placing simple text \"tags\" where each replacement is to be placed, with
3951PSfrag automatically removing these tags from the figure and replacing them
3952with a user specified LaTeX construction, properly aligned, scaled, and/or
3953rotated.")
3954 (license (license:fsf-free "file://psfrag.dtx"))))
3955
d4d9a1ec
RW
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
3973more flexible macros for defining and setting keys. The package provides a
3974pointer and a preset system. Furthermore, it supplies macros to allow class
3975and package options to contain options of the @code{key=value} form. A LaTeX
3976kernel patch is provided to avoid premature expansions of macros in class or
3977package options. A specialized system for setting @code{PSTricks} keys is
3978provided by the @code{pst-xkey} package.")
3979 (license license:lppl1.3+)))
3980
5a1ee7d8
RW
3981(define-public texlive-latex-pstool
3982 (package
3983 (name "texlive-latex-pstool")
3984 (version (number->string %texlive-revision))
3985 (source (origin
3986 (method svn-fetch)
d4d9a1ec
RW
3987 (uri (svn-reference
3988 (url (string-append "svn://www.tug.org/texlive/tags/"
3989 %texlive-tag "/Master/texmf-dist/"
3990 "/tex/latex/pstool"))
3991 (revision %texlive-revision)))
5a1ee7d8
RW
3992 (file-name (string-append name "-" version "-checkout"))
3993 (sha256
3994 (base32
d4d9a1ec
RW
3995 "1h816jain8c9nky75kk8pmmwj5b4yf9dpqvdvi2l6jhfj5iqkzr8"))))
3996 (build-system trivial-build-system)
5a1ee7d8 3997 (arguments
d4d9a1ec
RW
3998 `(#:modules ((guix build utils))
3999 #:builder
4000 (begin
4001 (use-modules (guix build utils))
4002 (let ((target (string-append (assoc-ref %outputs "out")
4003 "/share/texmf-dist/tex/latex/pstool")))
4004 (mkdir-p target)
4005 (copy-recursively (assoc-ref %build-inputs "source") target)
4006 #t))))
5a1ee7d8 4007 (propagated-inputs
d4d9a1ec 4008 `(("texlive-latex-bigfoot" ,texlive-latex-bigfoot) ; for suffix
5a1ee7d8
RW
4009 ("texlive-latex-filemod" ,texlive-latex-filemod)
4010 ("texlive-latex-graphics" ,texlive-latex-graphics)
4011 ("texlive-latex-ifplatform" ,texlive-latex-ifplatform)
d4d9a1ec 4012 ("texlive-latex-l3kernel" ,texlive-latex-l3kernel) ; for expl3
5a1ee7d8
RW
4013 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
4014 ("texlive-latex-psfrag" ,texlive-latex-psfrag)
d4d9a1ec
RW
4015 ("texlive-latex-tools" ,texlive-latex-tools) ; for shellesc
4016 ("texlive-latex-trimspaces" ,texlive-latex-trimspaces)
4017 ("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
b8d8806b 4018 (home-page "https://www.ctan.org/pkg/pstool")
d4d9a1ec 4019 (synopsis "Process PostScript graphics within pdfLaTeX documents")
5a1ee7d8
RW
4020 (description
4021 "This is a package for processing PostScript graphics with @code{psfrag}
4022labels within pdfLaTeX documents. Every graphic is compiled individually,
4023drastically speeding up compilation time when only a single figure needs
4024re-processing.")
4025 (license license:lppl)))
4026
171160d5
RW
4027(define-public texlive-latex-seminar
4028 (package
4029 (name "texlive-latex-seminar")
4030 (version (number->string %texlive-revision))
4031 (source (origin
4032 (method svn-fetch)
4033 (uri (svn-reference
4034 (url (string-append "svn://www.tug.org/texlive/tags/"
4035 %texlive-tag "/Master/texmf-dist/"
4036 "/tex/latex/seminar"))
4037 (revision %texlive-revision)))
a74ac06b 4038 (file-name (string-append name "-" version "-checkout"))
171160d5
RW
4039 (sha256
4040 (base32
4041 "0y4i651b75y6006n03x8n86bsqvjsailvvz9bhzy51dzsznqidq0"))))
1d4c2dab
RW
4042 (build-system trivial-build-system)
4043 (arguments
4044 `(#:modules ((guix build utils))
4045 #:builder
4046 (begin
4047 (use-modules (guix build utils))
4048 (let ((target (string-append (assoc-ref %outputs "out")
4049 "/share/texmf-dist/tex/latex/seminar")))
4050 (mkdir-p target)
4051 (copy-recursively (assoc-ref %build-inputs "source") target)
4052 #t))))
b8d8806b 4053 (home-page "https://www.ctan.org/pkg/seminar")
171160d5
RW
4054 (synopsis "Make overhead slides")
4055 ;; TODO: This package may need fancybox and xcomment at runtime.
4056 (description
4057 "This package provides a class that produces overhead
4058slides (transparencies), with many facilities. Seminar is not nowadays
4059reckoned a good basis for a presentation — users are advised to use more
4060recent classes such as powerdot or beamer, both of which are tuned to
406121st-century presentation styles.")
4062 (license license:lppl1.2+)))
4063
f3540dbd
RW
4064(define-public texlive-latex-trimspaces
4065 (package
4066 (name "texlive-latex-trimspaces")
4067 (version (number->string %texlive-revision))
4068 (source (origin
4069 (method svn-fetch)
4070 (uri (texlive-ref "latex" "trimspaces"))
70a71d19 4071 (file-name (string-append name "-" version "-checkout"))
f3540dbd
RW
4072 (sha256
4073 (base32
4074 "0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
4075 (build-system texlive-build-system)
4076 (arguments
4077 '(#:tex-directory "latex/trimspaces"
4078 #:tex-format "latex"
4079 #:phases
4080 (modify-phases %standard-phases
4081 (add-after 'unpack 'fix-bug
4082 (lambda _
4083 ;; The "ins" file refers to the wrong source file.
4084 (substitute* "trimspaces.ins"
4085 (("pstool.tex") "trimspaces.tex"))
4086 #t)))))
4087 (inputs
4088 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
b8d8806b 4089 (home-page "https://www.ctan.org/pkg/trimspaces")
f3540dbd
RW
4090 (synopsis "Trim spaces around an argument or within a macro")
4091 (description
4092 "This very short package allows you to expandably remove spaces around a
4093token list (commands are provided to remove spaces before, spaces after, or
4094both); or to remove surrounding spaces within a macro definition, or to define
4095space-stripped macros.")
4096 (license license:lppl)))
4097
7709d4d8
RW
4098(define-public texlive-latex-capt-of
4099 (package
4100 (name "texlive-latex-capt-of")
4101 (version (number->string %texlive-revision))
4102 (source (origin
4103 (method svn-fetch)
4104 (uri (svn-reference
4105 (url (string-append "svn://www.tug.org/texlive/tags/"
4106 %texlive-tag "/Master/texmf-dist/"
4107 "/tex/latex/capt-of"))
4108 (revision %texlive-revision)))
4109 (file-name (string-append name "-" version "-checkout"))
4110 (sha256
4111 (base32
4112 "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x"))))
4113 (build-system trivial-build-system)
4114 (arguments
4115 `(#:modules ((guix build utils))
4116 #:builder
4117 (begin
4118 (use-modules (guix build utils))
4119 (let ((target (string-append (assoc-ref %outputs "out")
4120 "/share/texmf-dist/tex/latex/capt-of")))
4121 (mkdir-p target)
4122 (copy-recursively (assoc-ref %build-inputs "source") target)
4123 #t))))
b8d8806b 4124 (home-page "https://www.ctan.org/pkg/capt-of")
7709d4d8
RW
4125 (synopsis "Captions on more than floats")
4126 (description
4127 "This package defines a command @code{\\captionof} for putting a caption
4128to something that's not a float.")
4129 (license license:lppl)))
4130
49b2e86a
RW
4131(define-public texlive-latex-doi
4132 (package
4133 (name "texlive-latex-doi")
4134 (version (number->string %texlive-revision))
4135 (source (origin
4136 (method svn-fetch)
4137 (uri (svn-reference
4138 (url (string-append "svn://www.tug.org/texlive/tags/"
4139 %texlive-tag "/Master/texmf-dist/"
4140 "/tex/latex/doi"))
4141 (revision %texlive-revision)))
4142 (file-name (string-append name "-" version "-checkout"))
4143 (sha256
4144 (base32
4145 "0378rdmrgr2lzbfi4qqy4dfpj5im20diyd8z8b9m4mlg05r7wgnb"))))
4146 (build-system trivial-build-system)
4147 (arguments
4148 `(#:modules ((guix build utils))
4149 #:builder
4150 (begin
4151 (use-modules (guix build utils))
4152 (let ((target (string-append (assoc-ref %outputs "out")
4153 "/share/texmf-dist/tex/latex/doi")))
4154 (mkdir-p target)
4155 (copy-recursively (assoc-ref %build-inputs "source") target)
4156 #t))))
4157 (home-page "https://www.ctan.org/pkg/doi")
4158 (synopsis "Create correct hyperlinks for DOI numbers")
4159 (description
4160 "You can hyperlink DOI numbers to doi.org. However, some publishers have
4161elected to use nasty characters in their DOI numbering scheme (@code{<},
4162@code{>}, @code{_} and @code{;} have all been spotted). This will either
4163upset LaTeX, or your PDF reader. This package contains a single user-level
4164command @code{\\doi{}}, which takes a DOI number, and creates a correct
4165hyperlink to the target of the DOI.")
4166 ;; Any version of the LPPL.
4167 (license license:lppl1.3+)))
4168
a8ac7c0b
RW
4169(define-public texlive-latex-etoolbox
4170 (package
4171 (name "texlive-latex-etoolbox")
4172 (version (number->string %texlive-revision))
4173 (source (origin
4174 (method svn-fetch)
4175 (uri (svn-reference
4176 (url (string-append "svn://www.tug.org/texlive/tags/"
4177 %texlive-tag "/Master/texmf-dist/"
4178 "/tex/latex/etoolbox"))
4179 (revision %texlive-revision)))
4180 (file-name (string-append name "-" version "-checkout"))
4181 (sha256
4182 (base32
d4d9a1ec 4183 "1agmq6bf8wzcd77n20ng8bl4kh69cg5f6sjniii7bcw4llhd3nc8"))))
a8ac7c0b
RW
4184 (build-system trivial-build-system)
4185 (arguments
4186 `(#:modules ((guix build utils))
4187 #:builder
4188 (begin
4189 (use-modules (guix build utils))
4190 (let ((target (string-append (assoc-ref %outputs "out")
4191 "/share/texmf-dist/tex/latex/etoolbox")))
4192 (mkdir-p target)
4193 (copy-recursively (assoc-ref %build-inputs "source") target)
4194 #t))))
b8d8806b 4195 (home-page "https://www.ctan.org/pkg/etoolbox")
a8ac7c0b
RW
4196 (synopsis "e-TeX tools for LaTeX")
4197 (description
4198 "This package is a toolbox of programming facilities geared primarily
4199towards LaTeX class and package authors. It provides LaTeX frontends to some
4200of the new primitives provided by e-TeX as well as some generic tools which
4201are not strictly related to e-TeX but match the profile of this package. The
4202package provides functions that seem to offer alternative ways of implementing
4203some LaTeX kernel commands; nevertheless, the package will not modify any part
4204of the LaTeX kernel.")
4205 (license license:lppl1.3+)))
4206
17dce7e5
RW
4207(define-public texlive-latex-fncychap
4208 (package
4209 (name "texlive-latex-fncychap")
4210 (version (number->string %texlive-revision))
4211 (source (origin
4212 (method svn-fetch)
4213 (uri (svn-reference
4214 (url (string-append "svn://www.tug.org/texlive/tags/"
4215 %texlive-tag "/Master/texmf-dist/"
4216 "/tex/latex/fncychap"))
4217 (revision %texlive-revision)))
4218 (file-name (string-append name "-" version "-checkout"))
4219 (sha256
4220 (base32
4221 "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
4222 (build-system trivial-build-system)
4223 (arguments
4224 `(#:modules ((guix build utils))
4225 #:builder
4226 (begin
4227 (use-modules (guix build utils))
4228 (let ((target (string-append (assoc-ref %outputs "out")
4229 "/share/texmf-dist/tex/latex/fncychap")))
4230 (mkdir-p target)
4231 (copy-recursively (assoc-ref %build-inputs "source") target)
4232 #t))))
b8d8806b 4233 (home-page "https://www.ctan.org/pkg/fncychap")
17dce7e5
RW
4234 (synopsis "Seven predefined chapter heading styles")
4235 (description
4236 "This package provides seven predefined chapter heading styles. Each
4237style can be modified using a set of simple commands. Optionally one can
4238modify the formatting routines in order to create additional chapter
4239headings.")
4240 (license license:lppl1.3+)))
4241
ef1e2ef0
RW
4242(define-public texlive-latex-framed
4243 (package
4244 (name "texlive-latex-framed")
4245 (version (number->string %texlive-revision))
4246 (source (origin
4247 (method svn-fetch)
4248 (uri (svn-reference
4249 (url (string-append "svn://www.tug.org/texlive/tags/"
4250 %texlive-tag "/Master/texmf-dist/"
4251 "/tex/latex/framed"))
4252 (revision %texlive-revision)))
4253 (file-name (string-append name "-" version "-checkout"))
4254 (sha256
4255 (base32
4256 "14a4ydqsvp3vcfavl21jrv0ybiqypaaqzg2q2cs3rzkandg7w98x"))))
4257 (build-system trivial-build-system)
4258 (arguments
4259 `(#:modules ((guix build utils))
4260 #:builder
4261 (begin
4262 (use-modules (guix build utils))
4263 (let ((target (string-append (assoc-ref %outputs "out")
4264 "/share/texmf-dist/tex/latex/framed")))
4265 (mkdir-p target)
4266 (copy-recursively (assoc-ref %build-inputs "source") target)
4267 #t))))
b8d8806b 4268 (home-page "https://www.ctan.org/pkg/framed")
ef1e2ef0
RW
4269 (synopsis "Framed or shaded regions that can break across pages")
4270 (description
4271 "The package creates three environments: @code{framed}, which puts an
4272ordinary frame box around the region, @code{shaded}, which shades the region,
4273and @code{leftbar}, which places a line at the left side. The environments
4274allow a break at their start (the @code{\\FrameCommand} enables creation of a
4275title that is “attached” to the environment); breaks are also allowed in the
4276course of the framed/shaded matter. There is also a command
4277@code{\\MakeFramed} to make your own framed-style environments.")
4278 ;; The header states: "These macros may be freely transmitted, reproduced,
4279 ;; or modified for any purpose provided that this notice is left intact."
4280 (license (license:fsf-free "file://framed.sty"))))
4281
588b5e96
RW
4282(define-public texlive-latex-g-brief
4283 (package
4284 (name "texlive-latex-g-brief")
4285 (version (number->string %texlive-revision))
4286 (source (origin
4287 (method svn-fetch)
4288 (uri (texlive-ref "latex" "g-brief"))
4289 (file-name (string-append name "-" version "-checkout"))
4290 (sha256
4291 (base32
4292 "0sikazkg0dpkcpzlbqw8qzxr81paf2f443vsrh14jnw7s4gswvc5"))))
4293 (build-system texlive-build-system)
4294 (arguments
4295 '(#:tex-directory "latex/g-brief"
4296 #:phases
4297 (modify-phases %standard-phases
4298 (add-after 'unpack 'remove-generated-file
4299 (lambda _
4300 (delete-file "g-brief.drv")
4301 #t)))))
b8d8806b 4302 (home-page "https://www.ctan.org/pkg/g-brief")
588b5e96
RW
4303 (synopsis "Letter document class")
4304 (description
4305 "This package is designed for formatting formless letters in German; it
4306can also be used for English (by those who can read the documentation). There
4307are LaTeX 2.09 @code{documentstyle} and LaTeX 2e class files for both an
4308\"old\" and a \"new\" version of g-brief.")
4309 (license license:lppl)))
4310
9b4d5c09
RW
4311(define-public texlive-latex-galois
4312 (package
4313 (name "texlive-latex-galois")
4314 (version (number->string %texlive-revision))
4315 (source (origin
4316 (method svn-fetch)
4317 (uri (texlive-ref "latex" "galois"))
4318 (file-name (string-append name "-" version "-checkout"))
4319 (sha256
4320 (base32
4321 "0d4l0msk8j5pi95xnmm9wygv1vbpkwkv5amx9l0km86cs79jpp1h"))))
4322 (build-system texlive-build-system)
4323 (arguments '(#:tex-directory "latex/galois"))
b8d8806b 4324 (home-page "https://www.ctan.org/pkg/galois")
9b4d5c09
RW
4325 (synopsis "Typeset Galois connections")
4326 (description
4327 "The package deals with connections in two-dimensional style, optionally
4328in colour.")
4329 (license license:lppl)))
4330
5f691e2e
RW
4331(define-public texlive-latex-gcite
4332 (package
4333 (name "texlive-latex-gcite")
4334 (version (number->string %texlive-revision))
4335 (source (origin
4336 (method svn-fetch)
4337 (uri (texlive-ref "latex" "gcite"))
4338 (file-name (string-append name "-" version "-checkout"))
4339 (sha256
4340 (base32
4341 "03g9by54yrypn599y98r1xh7qw0bbbmpzq0bfwpj6j5q5rkl1mfa"))))
4342 (build-system texlive-build-system)
4343 (arguments '(#:tex-directory "latex/gcite"))
b8d8806b 4344 (home-page "https://www.ctan.org/pkg/gcite")
5f691e2e
RW
4345 (synopsis "Citations in a reader-friendly style")
4346 (description
4347 "The package allows citations in the German style, which is considered by
4348many to be particularly reader-friendly. The citation provides a small amount
4349of bibliographic information in a footnote on the page where each citation is
4350made. It combines a desire to eliminate unnecessary page-turning with the
4351look-up efficiency afforded by numeric citations. The package makes use of
4352BibLaTeX, and is considered experimental.")
4353 (license license:lppl1.3+)))
4354
f47d1a52
RW
4355(define-public texlive-latex-geometry
4356 (package
4357 (name "texlive-latex-geometry")
4358 (version (number->string %texlive-revision))
4359 (source (origin
4360 (method svn-fetch)
4361 (uri (texlive-ref "latex" "geometry"))
4362 (file-name (string-append name "-" version "-checkout"))
4363 (sha256
4364 (base32
d4d9a1ec 4365 "0yw6bjfgsli3s1dldsgb7mkr7lnk329cgdjbgs8z2xn59pmmdsn4"))))
f47d1a52
RW
4366 (build-system texlive-build-system)
4367 (arguments '(#:tex-directory "latex/geometry"))
00a7af0e
RW
4368 (propagated-inputs
4369 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek))) ;for ifpdf
b8d8806b 4370 (home-page "https://www.ctan.org/pkg/geometry")
f47d1a52
RW
4371 (synopsis "Flexible and complete interface to document dimensions")
4372 (description
4373 "This package provides an easy and flexible user interface to customize
4374page layout, implementing auto-centering and auto-balancing mechanisms so that
4375the users have only to give the least description for the page layout. The
4376package knows about all the standard paper sizes, so that the user need not
4377know what the nominal \"real\" dimensions of the paper are, just its standard
4378name (such as a4, letter, etc.). An important feature is the package's
4379ability to communicate the paper size it's set up to the output.")
4380 (license license:lppl)))
4381
d48091be
RW
4382(define-public texlive-latex-mdwtools
4383 (package
4384 (name "texlive-latex-mdwtools")
4385 (version (number->string %texlive-revision))
4386 (source (origin
4387 (method svn-fetch)
4388 (uri (texlive-ref "latex" "mdwtools"))
4389 (file-name (string-append name "-" version "-checkout"))
4390 (sha256
4391 (base32
4392 "0caxs74hla28hc67csf5i5ahadx97w8vxh3mdmsprxbpd1mr7ssg"))))
4393 (build-system texlive-build-system)
4394 (arguments '(#:tex-directory "latex/mdwtools"))
b8d8806b 4395 (home-page "https://www.ctan.org/pkg/mdwtools")
d48091be
RW
4396 (synopsis "Miscellaneous tools by Mark Wooding")
4397 (description
4398 "This collection of tools includes: @code{atsupport} for short commands
fb5dfa86
RW
4399starting with @code{@@}, macros to sanitize the OT1 encoding of the
4400@code{cmtt} fonts; a @code{doafter} command; improved @code{footnote} support;
d48091be
RW
4401@code{mathenv} for various alignment in maths; list handling; @code{mdwmath}
4402which adds some minor changes to LaTeX maths; a rewrite of LaTeX's tabular and
4403array environments; verbatim handling; and syntax diagrams.")
4404 (license license:gpl3+)))
4405
80bf1f21
RW
4406(define-public texlive-latex-polyglossia
4407 (package
4408 (name "texlive-latex-polyglossia")
4409 (version (number->string %texlive-revision))
4410 (source (origin
4411 (method svn-fetch)
4412 (uri (texlive-ref "latex" "polyglossia"))
4413 (file-name (string-append name "-" version "-checkout"))
4414 (sha256
4415 (base32
d4d9a1ec 4416 "03ma58z3ypsbp7zgkzb1ylpn2ygr27cxzkf042ns0rif4g8s491f"))))
80bf1f21
RW
4417 (build-system texlive-build-system)
4418 (arguments '(#:tex-directory "latex/polyglossia"))
b8d8806b 4419 (home-page "https://www.ctan.org/pkg/polyglossia")
80bf1f21
RW
4420 (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
4421 (description
4422 "This package provides a complete Babel replacement for users of LuaLaTeX
4423and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least.")
4424 (license license:lppl1.3+)))
4425
84f8035a
RW
4426(define-public texlive-latex-supertabular
4427 (package
4428 (name "texlive-latex-supertabular")
4429 (version (number->string %texlive-revision))
4430 (source (origin
4431 (method svn-fetch)
4432 (uri (texlive-ref "latex" "supertabular"))
4433 (file-name (string-append name "-" version "-checkout"))
4434 (sha256
4435 (base32
4436 "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
4437 (build-system texlive-build-system)
4438 (arguments '(#:tex-directory "latex/supertabular"))
b8d8806b 4439 (home-page "https://www.ctan.org/pkg/supertabular")
84f8035a
RW
4440 (synopsis "Multi-page tables package")
4441 (description
4442 "This package was a predecessor of @code{longtable}; the newer
4443package (designed on quite different principles) is easier to use and more
4444flexible, in many cases, but supertabular retains its usefulness in a few
4445situations where longtable has problems.")
4446 (license license:lppl1.3+)))
4447
a0aa6b59
RW
4448(define-public texlive-tex-texinfo
4449 (package
4450 (name "texlive-tex-texinfo")
4451 (version (number->string %texlive-revision))
4452 (source (origin
4453 (method svn-fetch)
4454 (uri (svn-reference
4455 (url (string-append "svn://www.tug.org/texlive/tags/"
4456 %texlive-tag "/Master/texmf-dist/"
4457 "/tex/texinfo"))
4458 (revision %texlive-revision)))
88ae1921 4459 (file-name (string-append name "-" version "-checkout"))
a0aa6b59
RW
4460 (sha256
4461 (base32
d4d9a1ec 4462 "06cf821y1j7jdg93pb41ayigrfwgn0y49d7w1025zlijjxi6bvjp"))))
a0aa6b59
RW
4463 (build-system trivial-build-system)
4464 (arguments
4465 `(#:modules ((guix build utils))
4466 #:builder
4467 (begin
4468 (use-modules (guix build utils))
4469 (let ((target (string-append (assoc-ref %outputs "out")
4470 "/share/texmf-dist/tex/texinfo")))
4471 (mkdir-p target)
4472 (copy-recursively (assoc-ref %build-inputs "source") target)
4473 #t))))
b8d8806b 4474 (home-page "https://www.ctan.org/pkg/texinfo")
a0aa6b59
RW
4475 (synopsis "TeX macros to handle Texinfo files")
4476 (description
4477 "Texinfo is the preferred format for documentation in the GNU project;
4478the format may be used to produce online or printed output from a single
4479source. The Texinfo macros may be used to produce printable output using TeX;
4480other programs in the distribution offer online interactive use (with
4481hypertext linkages in some cases).")
4482 (license license:gpl3+)))
4483
0de81b09
RW
4484(define-public texlive-latex-upquote
4485 (package
4486 (name "texlive-latex-upquote")
4487 (version (number->string %texlive-revision))
4488 (source (origin
4489 (method svn-fetch)
4490 (uri (texlive-ref "latex" "upquote"))
4491 (file-name (string-append name "-" version "-checkout"))
4492 (sha256
4493 (base32
4494 "0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp"))))
4495 (build-system texlive-build-system)
4496 (arguments '(#:tex-directory "latex/upquote"))
b8d8806b 4497 (home-page "https://www.ctan.org/pkg/upquote")
0de81b09
RW
4498 (synopsis "Show \"realistic\" quotes in verbatim")
4499 (description
4500 "Typewriter-style fonts are best for program listings, but Computer
4501Modern Typewriter prints @code{`} and @code{'} as bent opening and closing
4502single quotes. Other fonts, and most programming languages, print @code{`} as
4503a grave accent and @code{'} upright; @code{'} is used both to open and to
4504close quoted strings. The package switches the typewriter font to Computer
4505Modern Typewriter in OT1 encoding, and modifies the behaviour of
4506@code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
4507in the expected way. It does this regardless of other fonts or encodings in
4508use, so long as the package is loaded after the other fonts were. The package
4509does not affect @code{\\tt}, @code{\\texttt}, etc.")
4510 (license license:lppl1.2+)))
4511
bda61541
RW
4512(define-public texlive-latex-anysize
4513 (package
4514 (name "texlive-latex-anysize")
4515 (version (number->string %texlive-revision))
4516 (source (origin
4517 (method svn-fetch)
4518 (uri (svn-reference
4519 (url (string-append "svn://www.tug.org/texlive/tags/"
4520 %texlive-tag "/Master/texmf-dist/"
4521 "/tex/latex/anysize"))
4522 (revision %texlive-revision)))
de4eb4d1 4523 (file-name (string-append name "-" version "-checkout"))
bda61541
RW
4524 (sha256
4525 (base32
4526 "19khwqjlvznc955sijhww3c4zbb0053rvzwv9nz738qknq7y18vb"))))
4527 (build-system trivial-build-system)
4528 (arguments
4529 `(#:modules ((guix build utils))
4530 #:builder
4531 (begin
4532 (use-modules (guix build utils))
4533 (let ((target (string-append (assoc-ref %outputs "out")
4534 "/share/texmf-dist/tex/latex/anysize")))
4535 (mkdir-p target)
4536 (copy-recursively (assoc-ref %build-inputs "source") target)
4537 #t))))
b8d8806b 4538 (home-page "https://www.ctan.org/pkg/anysize")
bda61541
RW
4539 (synopsis "Simple package to set up document margins")
4540 (description
4541 "This is a simple package to set up document margins. This package is
4542considered obsolete; alternatives are the @code{typearea} package from the
4543@code{koma-script} bundle, or the @code{geometry} package.")
4544 (license license:public-domain)))
4545
1d3be84e
RW
4546(define-public texlive-latex-appendix
4547 (package
4548 (name "texlive-latex-appendix")
4549 (version (number->string %texlive-revision))
4550 (source (origin
4551 (method svn-fetch)
4552 (uri (texlive-ref "latex" "appendix"))
72d5adf4 4553 (file-name (string-append name "-" version "-checkout"))
1d3be84e
RW
4554 (sha256
4555 (base32
4556 "0rxfpr8vq3brwx5rc7qn91ixlp9zva4zrms8a579fqa1g5yva7vg"))))
4557 (build-system texlive-build-system)
4558 (arguments '(#:tex-directory "latex/appendix"))
b8d8806b 4559 (home-page "https://www.ctan.org/pkg/appendix")
1d3be84e
RW
4560 (synopsis "Extra control of appendices")
4561 (description
4562 "The appendix package provides various ways of formatting the titles of
4563appendices. Also (sub)appendices environments are provided that can be used,
4564for example, for per chapter/section appendices. An @code{appendices}
4565environment is provided which can be used instead of the @code{\\appendix}
4566command.")
4567 (license license:lppl)))
4568
b92ac281
RW
4569(define-public texlive-latex-changebar
4570 (package
4571 (name "texlive-latex-changebar")
4572 (version (number->string %texlive-revision))
4573 (source (origin
4574 (method svn-fetch)
4575 (uri (texlive-ref "latex" "changebar"))
af8aa105 4576 (file-name (string-append name "-" version "-checkout"))
b92ac281
RW
4577 (sha256
4578 (base32
d4d9a1ec 4579 "05x15ilynqrl448h8l6qiraygamdldlngz89a2bw7kg74fym14ch"))))
b92ac281
RW
4580 (build-system texlive-build-system)
4581 (arguments '(#:tex-directory "latex/changebar"))
b8d8806b 4582 (home-page "https://www.ctan.org/pkg/changebar")
b92ac281
RW
4583 (synopsis "Generate changebars in LaTeX documents")
4584 (description
4585 "Identify areas of text to be marked with changebars with the
4586@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The
36a4366d
EF
4587package uses @code{drivers} to place the bars; the available drivers can work
4588with @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI
b92ac281
RW
4589drivers, and VTeX and pdfTeX.")
4590 (license license:lppl)))
4591
fedd77c1
RW
4592(define-public texlive-latex-cmap
4593 (package
4594 (name "texlive-latex-cmap")
4595 (version (number->string %texlive-revision))
4596 (source (origin
4597 (method svn-fetch)
4598 (uri (svn-reference
4599 (url (string-append "svn://www.tug.org/texlive/tags/"
4600 %texlive-tag "/Master/texmf-dist/"
4601 "/tex/latex/cmap"))
4602 (revision %texlive-revision)))
4603 (file-name (string-append name "-" version "-checkout"))
4604 (sha256
4605 (base32
4606 "1s1rv6zgw105w2j6ffhnk914qrix87y1ndzri1q72g2kbr91zlbg"))))
4607 (build-system trivial-build-system)
4608 (arguments
4609 `(#:modules ((guix build utils))
4610 #:builder
4611 (begin
4612 (use-modules (guix build utils))
4613 (let ((target (string-append (assoc-ref %outputs "out")
4614 "/share/texmf-dist/tex/latex/cmap")))
4615 (mkdir-p target)
4616 (copy-recursively (assoc-ref %build-inputs "source") target)
4617 #t))))
4618 (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\
4619Master/texmf-dist/tex/latex/cmap/")
4620 (synopsis "CMap support for PDF files")
4621 (description
4622 "This package embeds CMap tables into PDF files to make search and
4623copy-and-paste functions work properly.")
4624 (license license:lppl)))
4625
e003a5f0
RW
4626(define-public texlive-latex-colortbl
4627 (package
4628 (name "texlive-latex-colortbl")
4629 (version (number->string %texlive-revision))
4630 (source (origin
4631 (method svn-fetch)
4632 (uri (texlive-ref "latex" "colortbl"))
4439c1de 4633 (file-name (string-append name "-" version "-checkout"))
e003a5f0
RW
4634 (sha256
4635 (base32
4636 "190pmq8la2rq07xry8bn8z8yywzxv6fqyqaj7yjfj5rgw6x0mas8"))))
4637 (build-system texlive-build-system)
4638 (arguments '(#:tex-directory "latex/colortbl"))
b8d8806b 4639 (home-page "https://www.ctan.org/pkg/colortbl")
e003a5f0
RW
4640 (synopsis "Add colour to LaTeX tables")
4641 (description
4642 "This package allows rows, columns, and even individual cells in LaTeX
4643tables to be coloured.")
4644 (license license:lppl)))
4645
36ce05ff
RW
4646(define-public texlive-latex-fancybox
4647 (package
4648 (name "texlive-latex-fancybox")
4649 (version (number->string %texlive-revision))
4650 (source (origin
4651 (method svn-fetch)
4652 (uri (svn-reference
4653 (url (string-append "svn://www.tug.org/texlive/tags/"
4654 %texlive-tag "/Master/texmf-dist/"
4655 "/tex/latex/fancybox"))
4656 (revision %texlive-revision)))
62ee46b9 4657 (file-name (string-append name "-" version "-checkout"))
36ce05ff
RW
4658 (sha256
4659 (base32
4660 "0smmnaad2q8qwicay1frri990lv65l0k8cwzsvdsyp3jk8kp042w"))))
4661 (build-system trivial-build-system)
4662 (arguments
4663 `(#:modules ((guix build utils))
4664 #:builder
4665 (begin
4666 (use-modules (guix build utils))
4667 (let ((target (string-append (assoc-ref %outputs "out")
4668 "/share/texmf-dist/tex/latex/fancybox")))
4669 (mkdir-p target)
4670 (copy-recursively (assoc-ref %build-inputs "source") target)
4671 #t))))
b8d8806b 4672 (home-page "https://www.ctan.org/pkg/fancybox")
36ce05ff
RW
4673 (synopsis "Variants of \\fbox and other games with boxes")
4674 (description
4675 "This package provides variants of @code{\\fbox}: @code{\\shadowbox},
4676@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for
4677using box macros and flexible verbatim macros. You can box mathematics,
4678floats, center, flushleft, and flushright, lists, and pages.")
4679 (license license:lppl1.2+)))
4680
20282111
RW
4681(define-public texlive-latex-fancyhdr
4682 (package
4683 (name "texlive-latex-fancyhdr")
4684 (version (number->string %texlive-revision))
4685 (source (origin
4686 (method svn-fetch)
4687 (uri (svn-reference
4688 (url (string-append "svn://www.tug.org/texlive/tags/"
4689 %texlive-tag "/Master/texmf-dist/"
4690 "/tex/latex/fancyhdr"))
4691 (revision %texlive-revision)))
e89d5cf4 4692 (file-name (string-append name "-" version "-checkout"))
20282111
RW
4693 (sha256
4694 (base32
d4d9a1ec 4695 "1xsnzx7vgdfh9zh2m7bjz6bgdpxsgb1kyc19p50vhs34x5nbgsnr"))))
20282111
RW
4696 (build-system trivial-build-system)
4697 (arguments
4698 `(#:modules ((guix build utils))
4699 #:builder
4700 (begin
4701 (use-modules (guix build utils))
4702 (let ((target (string-append (assoc-ref %outputs "out")
4703 "/share/texmf-dist/tex/latex/fancyhdr")))
4704 (mkdir-p target)
4705 (copy-recursively (assoc-ref %build-inputs "source") target)
4706 #t))))
b8d8806b 4707 (home-page "https://www.ctan.org/pkg/fancyhdr")
20282111
RW
4708 (synopsis "Extensive control of page headers and footers in LaTeX2e")
4709 (description
4710 "The package provides extensive facilities, both for constructing headers
4711and footers, and for controlling their use (for example, at times when LaTeX
4712would automatically change the heading style in use).")
4713 (license license:lppl)))
4714
df2b9bb4
RW
4715(define-public texlive-latex-float
4716 (package
4717 (name "texlive-latex-float")
4718 (version (number->string %texlive-revision))
4719 (source (origin
4720 (method svn-fetch)
4721 (uri (texlive-ref "latex" "float"))
4fd0a591 4722 (file-name (string-append name "-" version "-checkout"))
df2b9bb4
RW
4723 (sha256
4724 (base32
4725 "0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
4726 (build-system texlive-build-system)
4727 (arguments '(#:tex-directory "latex/float"))
b8d8806b 4728 (home-page "https://www.ctan.org/pkg/float")
df2b9bb4
RW
4729 (synopsis "Improved interface for floating objects")
4730 (description
4731 "This package improves the interface for defining floating objects such
4732as figures and tables. It introduces the boxed float, the ruled float and the
4733plaintop float. You can define your own floats and improve the behaviour of
4734the old ones. The package also provides the @code{H} float modifier option of
4735the obsolete @code{here} package. You can select this as automatic default
4736with @code{\\floatplacement{figure}{H}}.")
4737 (license license:lppl)))
4738
3921bc7c
RW
4739(define-public texlive-latex-footmisc
4740 (package
4741 (name "texlive-latex-footmisc")
4742 (version (number->string %texlive-revision))
4743 (source (origin
4744 (method svn-fetch)
4745 (uri (texlive-ref "latex" "footmisc"))
dae1d9e4 4746 (file-name (string-append name "-" version "-checkout"))
3921bc7c
RW
4747 (sha256
4748 (base32
4749 "03x61wwql8nh6zrqiiiq3rb0x7m3pn48c606zapy19y21fybwdxs"))))
4750 (build-system texlive-build-system)
4751 (arguments '(#:tex-directory "latex/footmisc"))
b8d8806b 4752 (home-page "https://www.ctan.org/pkg/footmisc")
3921bc7c
RW
4753 (synopsis "Range of footnote options")
4754 (description
4755 "This is a collection of ways to change the typesetting of footnotes.
4756The package provides means of changing the layout of the footnotes themselves,
4757a way to number footnotes per page, to make footnotes disappear in a
4758\"moving\" argument, and to deal with multiple references to footnotes from
4759the same place. The package also has a range of techniques for labelling
4760footnotes with symbols rather than numbers.")
4761 (license license:lppl1.3+)))
4762
b2bc1daf
RW
4763(define-public texlive-latex-listings
4764 (package
4765 (name "texlive-latex-listings")
4766 (version (number->string %texlive-revision))
4767 (source (origin
4768 (method svn-fetch)
4769 (uri (texlive-ref "latex" "listings"))
aeb135e3 4770 (file-name (string-append name "-" version "-checkout"))
b2bc1daf
RW
4771 (sha256
4772 (base32
4773 "1nsn9wp3wl12b36c0sqrim33lf33cr5wky0h4ncnw8lvqgm7h8wf"))))
4774 (build-system texlive-build-system)
4775 (arguments
4776 '(#:tex-directory "latex/listings"
4777 #:build-targets '("listings.ins")))
b8d8806b 4778 (home-page "https://www.ctan.org/pkg/listings")
b2bc1daf
RW
4779 (synopsis "Typeset source code listings using LaTeX")
4780 (description
4781 "The package enables the user to typeset programs (programming code)
4782within LaTeX; the source code is read directly by TeX---no front-end processor
4783is needed. Keywords, comments and strings can be typeset using different
4784styles. Support for @code{hyperref} is provided.")
4785 (license license:lppl1.3+)))
4786
02fd07b3
RW
4787(define-public texlive-latex-jknapltx
4788 (package
4789 (name "texlive-latex-jknapltx")
4790 (version (number->string %texlive-revision))
4791 (source (origin
4792 (method svn-fetch)
4793 (uri (svn-reference
4794 (url (string-append "svn://www.tug.org/texlive/tags/"
4795 %texlive-tag "/Master/texmf-dist/"
4796 "/tex/latex/jknapltx"))
4797 (revision %texlive-revision)))
aa499191 4798 (file-name (string-append name "-" version "-checkout"))
02fd07b3
RW
4799 (sha256
4800 (base32
4801 "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
4802 (build-system trivial-build-system)
4803 (arguments
4804 `(#:modules ((guix build utils))
4805 #:builder
4806 (begin
4807 (use-modules (guix build utils))
4808 (let ((target (string-append (assoc-ref %outputs "out")
4809 "/share/texmf-dist/tex/latex/jknapltx")))
4810 (mkdir-p target)
4811 (copy-recursively (assoc-ref %build-inputs "source") target)
4812 #t))))
b8d8806b 4813 (home-page "https://www.ctan.org/pkg/jknappen")
02fd07b3
RW
4814 (synopsis "Miscellaneous packages by Joerg Knappen")
4815 (description
4816 "This package provides miscellaneous macros by Joerg Knappen, including:
4817represent counters in greek; Maxwell's non-commutative division;
4818@code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
4819@code{inputenc} definition files that allow verbatim input in the respective
4820ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
4821extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
4822transliterate semitic languages; patches to make (La)TeX formulae embeddable
4823in SGML; use maths minus in text as appropriate; simple Young tableaux.")
4824 (license license:gpl2)))
4825
83c830d1
RW
4826(define-public texlive-fonts-ec
4827 (package
4828 (name "texlive-fonts-ec")
4829 (version (number->string %texlive-revision))
4830 (source (origin
4831 (method svn-fetch)
4832 (uri (svn-reference
4833 (url (string-append "svn://www.tug.org/texlive/tags/"
4834 %texlive-tag "/Master/texmf-dist/"
4835 "/fonts/source/jknappen/ec/"))
4836 (revision %texlive-revision)))
ca816eb3 4837 (file-name (string-append name "-" version "-checkout"))
83c830d1
RW
4838 (sha256
4839 (base32
4840 "12av65fbz9xiashm09c9m1fj1mijxls5xspd7652ry1n5s0nixy4"))))
4841 (build-system gnu-build-system)
4842 (arguments
4843 `(#:modules ((guix build gnu-build-system)
4844 (guix build utils)
4845 (srfi srfi-1)
4846 (srfi srfi-26))
4847 #:tests? #f ; no tests
4848 #:phases
4849 (modify-phases %standard-phases
4850 (delete 'configure)
4851 (replace 'build
4852 (lambda* (#:key inputs #:allow-other-keys)
4853 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
4854 ;; Tell mf where to find mf.base
4855 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
4856 ;; Tell mf where to look for source files
4857 (setenv "MFINPUTS"
4858 (string-append (getcwd) ":"
4859 mf "/share/texmf-dist/metafont/base:"
4860 (assoc-ref inputs "texlive-fonts-cm")
4861 "/share/texmf-dist/fonts/source/public/cm")))
4862 (mkdir "build")
c4fc86e4
MW
4863 (for-each (lambda (font)
4864 (format #t "building font ~a\n" font)
4865 (invoke "mf" "-progname=mf"
4866 "-output-directory=build"
4867 (string-append "\\"
4868 "mode:=ljfour; "
4869 "mag:=1; "
4870 "batchmode; "
4871 "input " (basename font ".mf"))))
4872 (find-files "." "[0-9]+\\.mf$"))
4873 #t))
83c830d1
RW
4874 (replace 'install
4875 (lambda* (#:key outputs #:allow-other-keys)
4876 (let* ((out (assoc-ref outputs "out"))
4877 (tfm (string-append
4878 out "/share/texmf-dist/fonts/tfm/jknappen/ec"))
4879 (mf (string-append
4880 out "/share/texmf-dist/fonts/source/jknappen/ec")))
4881 (for-each (cut install-file <> tfm)
4882 (find-files "build" "\\.*"))
4883 (for-each (cut install-file <> mf)
4884 (find-files "." "\\.mf"))
4885 #t))))))
4886 (native-inputs
4887 `(("texlive-bin" ,texlive-bin)
4888 ("texlive-metafont-base" ,texlive-metafont-base)
4889 ("texlive-fonts-cm" ,texlive-fonts-cm)))
b8d8806b 4890 (home-page "https://www.ctan.org/pkg/ec")
83c830d1
RW
4891 (synopsis "Computer modern fonts in T1 and TS1 encodings")
4892 (description
4893 "The EC fonts are European Computer Modern Fonts, supporting the complete
4894LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.
4895These fonts are intended to be stable with no changes being made to the tfm
4896files. The set also contains a Text Companion Symbol font, called @code{tc},
4897featuring many useful characters needed in text typesetting, for example
4898oldstyle digits, currency symbols (including the newly created Euro symbol),
4899the permille sign, copyright, trade mark and servicemark as well as a copyleft
4900sign, and many others. Recent releases of LaTeX2e support the EC fonts. The
4901EC fonts supersede the preliminary version released as the DC fonts. The
4902fonts are available in (traced) Adobe Type 1 format, as part of the
4903@code{cm-super} bundle. The other Computer Modern-style T1-encoded Type 1
4904set, Latin Modern, is not actually a direct development of the EC set, and
4905differs from the EC in a number of particulars.")
4906 (license (license:fsf-free "https://www.tug.org/svn/texlive/tags/\
4907texlive-2017.1/Master/texmf-dist/doc/fonts/ec/copyrite.txt"))))
4908
5e9bf5a2
RW
4909(define-public texlive-fonts-adobe-times
4910 (package
4911 (name "texlive-fonts-adobe-times")
4912 (version (number->string %texlive-revision))
4913 (source (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/type1/urw/times/"))
4919 (revision %texlive-revision)))
4920 (file-name (string-append name "-" version "-checkout"))
4921 (sha256
4922 (base32
4923 "15vzyr7favkv1mj00qxr03s89kw78nd066fh69by93272g8p5sgd"))))
4924 (build-system trivial-build-system)
4925 (arguments
4926 `(#:modules ((guix build utils)
4927 (ice-9 match))
4928 #:builder
4929 (begin
4930 (use-modules (guix build utils)
4931 (ice-9 match))
4932 (let ((root (string-append (assoc-ref %outputs "out")
4933 "/share/texmf-dist/"))
4934 (pkgs '(("source" . "fonts/type1/urw/times")
4935
4936 ("times-afm" . "fonts/afm/adobe/times")
4937 ("times-tfm" . "fonts/tfm/adobe/times")
4938 ("times-vf" . "fonts/vf/adobe/times")
4939
4940 ("urw-afm" . "fonts/afm/urw/times")
4941 ("urw35vf-tfm" . "fonts/tfm/urw35vf/times")
4942 ("urw35vf-vf" . "fonts/vf/urw35vf/times")
4943
4944 ("times-tex" . "tex/latex/times")
4945 ("dvips" . "dvips/times")
4946 ("fonts-map" . "fonts/map/dvips/times"))))
4947 (for-each (match-lambda
4948 ((pkg . dir)
4949 (let ((target (string-append root dir)))
4950 (mkdir-p target)
4951 (copy-recursively (assoc-ref %build-inputs pkg)
4952 target))))
4953 pkgs)
4954 #t))))
4955 (native-inputs
4956 `(("times-afm"
4957 ,(origin
4958 (method svn-fetch)
4959 (uri (svn-reference
4960 (url (string-append "svn://www.tug.org/texlive/tags/"
4961 %texlive-tag "/Master/texmf-dist/"
4962 "/fonts/afm/adobe/times"))
4963 (revision %texlive-revision)))
4964 (file-name (string-append name "-afm-" version "-checkout"))
4965 (sha256
4966 (base32
4967 "1k7h6vihfc6ri2lq9ggnq2g4zq3qcgq1vd0hr486g9cqrdpys6cy"))))
4968 ("times-tfm"
4969 ,(origin
4970 (method svn-fetch)
4971 (uri (svn-reference
4972 (url (string-append "svn://www.tug.org/texlive/tags/"
4973 %texlive-tag "/Master/texmf-dist/"
4974 "/fonts/tfm/adobe/times"))
4975 (revision %texlive-revision)))
4976 (file-name (string-append name "-tfm-" version "-checkout"))
4977 (sha256
4978 (base32
4979 "1hbgkjnf5xyganbznwpwszvr3iyk4bzb0ys4hd8ybawp60paadrr"))))
4980 ("times-vf"
4981 ,(origin
4982 (method svn-fetch)
4983 (uri (svn-reference
4984 (url (string-append "svn://www.tug.org/texlive/tags/"
4985 %texlive-tag "/Master/texmf-dist/"
4986 "/fonts/vf/adobe/times"))
4987 (revision %texlive-revision)))
4988 (file-name (string-append name "-vf-" version "-checkout"))
4989 (sha256
4990 (base32
4991 "18rfspnwdw9r81dy18lb4w96d09b6c4g7y80azwylalkhwdf2lfp"))))
4992 ("urw-afm"
4993 ,(origin
4994 (method svn-fetch)
4995 (uri (svn-reference
4996 (url (string-append "svn://www.tug.org/texlive/tags/"
4997 %texlive-tag "/Master/texmf-dist/"
4998 "/fonts/afm/urw/times"))
4999 (revision %texlive-revision)))
5000 (file-name (string-append name "-urw-afm-" version "-checkout"))
5001 (sha256
5002 (base32
5003 "0g0xpsyn6634g0b4rpd420v7i4gkz3zr12vcy2b8csbcscjvwri5"))))
5004 ("urw35vf-tfm"
5005 ,(origin
5006 (method svn-fetch)
5007 (uri (svn-reference
5008 (url (string-append "svn://www.tug.org/texlive/tags/"
5009 %texlive-tag "/Master/texmf-dist/"
5010 "/fonts/tfm/urw35vf/times"))
5011 (revision %texlive-revision)))
5012 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5013 (sha256
5014 (base32
5015 "0a4idlvpaqd0ypqgy1xw0rpx8q23bvssg8xq757zzn3zikj0w7pr"))))
5016 ("urw35vf-vf"
5017 ,(origin
5018 (method svn-fetch)
5019 (uri (svn-reference
5020 (url (string-append "svn://www.tug.org/texlive/tags/"
5021 %texlive-tag "/Master/texmf-dist/"
5022 "/fonts/vf/urw35vf/times"))
5023 (revision %texlive-revision)))
5024 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
5025 (sha256
5026 (base32
5027 "05mppwxd4c5x0yw50gca726f0ylc1rk8jf0jjkrriixq6rnw03di"))))
5028 ("times-tex"
5029 ,(origin
5030 (method svn-fetch)
5031 (uri (svn-reference
5032 (url (string-append "svn://www.tug.org/texlive/tags/"
5033 %texlive-tag "/Master/texmf-dist/"
5034 "/tex/latex/times"))
5035 (revision %texlive-revision)))
5036 (file-name (string-append name "-tex-" version "-checkout"))
5037 (sha256
5038 (base32
5039 "1gmd0x7c3vkvfzgmrsp4866rcdbyimfk3bjr91zaadc41r1i8xrp"))))
5040 ("dvips"
5041 ,(origin
5042 (method svn-fetch)
5043 (uri (svn-reference
5044 (url (string-append "svn://www.tug.org/texlive/tags/"
5045 %texlive-tag "/Master/texmf-dist/"
5046 "/dvips/times/"))
5047 (revision %texlive-revision)))
5048 (file-name (string-append name "-dvips-" version "-checkout"))
5049 (sha256
5050 (base32
5051 "1fvqpgqi7bp2q76nf5kmlhsdijxw65arqfy3ax3djwih3yg12mp0"))))
5052 ("fonts-map"
5053 ,(origin
5054 (method svn-fetch)
5055 (uri (svn-reference
5056 (url (string-append "svn://www.tug.org/texlive/tags/"
5057 %texlive-tag "/Master/texmf-dist/"
5058 "/fonts/map/dvips/times/"))
5059 (revision %texlive-revision)))
5060 (file-name (string-append name "-fonts-map-" version "-checkout"))
5061 (sha256
5062 (base32
5063 "12f00gzs2zgllkm59qdhw2xxj7lvg3p256232f1l275z3pldfqqi"))))))
5064 (home-page "https://ctan.org/pkg/urw-base35")
5065 (synopsis "URW Base 35 font pack for LaTeX")
5066 (description
5067 "This package provides a drop-in replacements for the Times font from
5068Adobe's basic set.")
5069 ;; No license version specified.
5070 (license license:gpl3+)))
5071
f2d1f060
RW
5072(define-public texlive-fonts-adobe-palatino
5073 (package
5074 (name "texlive-fonts-adobe-palatino")
5075 (version (number->string %texlive-revision))
5076 (source (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/type1/urw/palatino/"))
5082 (revision %texlive-revision)))
5083 (file-name (string-append name "-" version "-checkout"))
5084 (sha256
5085 (base32
5086 "18dw5260c6fy7acxaqwrg3hw04kg63ijq4lkn56q5pa2g6nyylrp"))))
5087 (build-system trivial-build-system)
5088 (arguments
5089 `(#:modules ((guix build utils)
5090 (ice-9 match))
5091 #:builder
5092 (begin
5093 (use-modules (guix build utils)
5094 (ice-9 match))
5095 (let ((root (string-append (assoc-ref %outputs "out")
5096 "/share/texmf-dist/"))
5097 (pkgs '(("source" . "fonts/type1/urw/palatino")
5098
5099 ("palatino-afm" . "fonts/afm/adobe/palatino")
5100 ("palatino-tfm" . "fonts/tfm/adobe/palatino")
5101 ("palatino-vf" . "fonts/vf/adobe/palatino")
5102
5103 ("urw-afm" . "fonts/afm/urw/palatino")
5104 ("urw35vf-tfm" . "fonts/tfm/urw35vf/palatino")
5105 ("urw35vf-vf" . "fonts/vf/urw35vf/palatino")
5106
5107 ("palatino-tex" . "tex/latex/palatino")
5108 ("dvips" . "dvips/palatino")
5109 ("fonts-map" . "fonts/map/dvips/palatino"))))
5110 (for-each (match-lambda
5111 ((pkg . dir)
5112 (let ((target (string-append root dir)))
5113 (mkdir-p target)
5114 (copy-recursively (assoc-ref %build-inputs pkg)
5115 target))))
5116 pkgs)
5117 #t))))
5118 (native-inputs
5119 `(("palatino-afm"
5120 ,(origin
5121 (method svn-fetch)
5122 (uri (svn-reference
5123 (url (string-append "svn://www.tug.org/texlive/tags/"
5124 %texlive-tag "/Master/texmf-dist/"
5125 "/fonts/afm/adobe/palatino"))
5126 (revision %texlive-revision)))
5127 (file-name (string-append name "-afm-" version "-checkout"))
5128 (sha256
5129 (base32
5130 "0pxizay730cx7rb9y5bqq9dn1zxx3arc33rmdsn7l29pc51flmmi"))))
5131 ("palatino-tfm"
5132 ,(origin
5133 (method svn-fetch)
5134 (uri (svn-reference
5135 (url (string-append "svn://www.tug.org/texlive/tags/"
5136 %texlive-tag "/Master/texmf-dist/"
5137 "/fonts/tfm/adobe/palatino"))
5138 (revision %texlive-revision)))
5139 (file-name (string-append name "-tfm-" version "-checkout"))
5140 (sha256
5141 (base32
5142 "1w1vm0sk9kpsy14yhyf1v1q3c6b97cgbba74g578bcwjlh810mg0"))))
5143 ("palatino-vf"
5144 ,(origin
5145 (method svn-fetch)
5146 (uri (svn-reference
5147 (url (string-append "svn://www.tug.org/texlive/tags/"
5148 %texlive-tag "/Master/texmf-dist/"
5149 "/fonts/vf/adobe/palatino"))
5150 (revision %texlive-revision)))
5151 (file-name (string-append name "-vf-" version "-checkout"))
5152 (sha256
5153 (base32
5154 "1maqfis8hpybcn9lmm8r2b1g56620lfpsncg0742c3kkjd6dh97h"))))
5155 ("urw-afm"
5156 ,(origin
5157 (method svn-fetch)
5158 (uri (svn-reference
5159 (url (string-append "svn://www.tug.org/texlive/tags/"
5160 %texlive-tag "/Master/texmf-dist/"
5161 "/fonts/afm/urw/palatino"))
5162 (revision %texlive-revision)))
5163 (file-name (string-append name "-urw-afm-" version "-checkout"))
5164 (sha256
5165 (base32
5166 "0gk0xwy1fs2si5kb1j3dzgm52c8sagv32gd9dmw88m7sgh5qkd87"))))
5167 ("urw35vf-tfm"
5168 ,(origin
5169 (method svn-fetch)
5170 (uri (svn-reference
5171 (url (string-append "svn://www.tug.org/texlive/tags/"
5172 %texlive-tag "/Master/texmf-dist/"
5173 "/fonts/tfm/urw35vf/palatino"))
5174 (revision %texlive-revision)))
5175 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5176 (sha256
5177 (base32
5178 "19aq3xwfg7vkf1qzjdxgcvcdqwpvpavq3l25y64xni72qx0kmppz"))))
5179 ("urw35vf-vf"
5180 ,(origin
5181 (method svn-fetch)
5182 (uri (svn-reference
5183 (url (string-append "svn://www.tug.org/texlive/tags/"
5184 %texlive-tag "/Master/texmf-dist/"
5185 "/fonts/vf/urw35vf/palatino"))
5186 (revision %texlive-revision)))
5187 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
5188 (sha256
5189 (base32
5190 "1lkn4p6zimrs0ah6mxsang4bicp8j7xzl016529a3f168an7mdmj"))))
5191 ("palatino-tex"
5192 ,(origin
5193 (method svn-fetch)
5194 (uri (svn-reference
5195 (url (string-append "svn://www.tug.org/texlive/tags/"
5196 %texlive-tag "/Master/texmf-dist/"
5197 "/tex/latex/palatino"))
5198 (revision %texlive-revision)))
5199 (file-name (string-append name "-tex-" version "-checkout"))
5200 (sha256
5201 (base32
5202 "0ng9w7i0p1nb51amla32jj86vx6p84m6qc7asam3g4x8w5jf7s27"))))
5203 ("dvips"
5204 ,(origin
5205 (method svn-fetch)
5206 (uri (svn-reference
5207 (url (string-append "svn://www.tug.org/texlive/tags/"
5208 %texlive-tag "/Master/texmf-dist/"
5209 "/dvips/palatino/"))
5210 (revision %texlive-revision)))
5211 (file-name (string-append name "-dvips-" version "-checkout"))
5212 (sha256
5213 (base32
5214 "1pdbkfmhx4kk3brh5lg6fyl9ad2kbjmkrhgcx84klnlhq01mfdhb"))))
5215 ("fonts-map"
5216 ,(origin
5217 (method svn-fetch)
5218 (uri (svn-reference
5219 (url (string-append "svn://www.tug.org/texlive/tags/"
5220 %texlive-tag "/Master/texmf-dist/"
5221 "/fonts/map/dvips/palatino/"))
5222 (revision %texlive-revision)))
5223 (file-name (string-append name "-fonts-map-" version "-checkout"))
5224 (sha256
5225 (base32
5226 "0rg13hyp652hp3gnrj5pbyb84zkqmyi1qnm8c6spcyaq8pm06l0d"))))))
5227 (home-page "https://ctan.org/pkg/urw-base35")
5228 (synopsis "URW Base 35 font pack for LaTeX")
5229 (description
5230 "This package provides a drop-in replacements for the Palatino font from
5231Adobe's basic set.")
5232 ;; No license version specified.
5233 (license license:gpl3+)))
5234
4628315b
RW
5235(define-public texlive-fonts-adobe-zapfding
5236 (package
5237 (name "texlive-fonts-adobe-zapfding")
5238 (version (number->string %texlive-revision))
5239 (source (origin
5240 (method svn-fetch)
5241 (uri (svn-reference
5242 (url (string-append "svn://www.tug.org/texlive/tags/"
5243 %texlive-tag "/Master/texmf-dist/"
5244 "/fonts/type1/urw/zapfding/"))
5245 (revision %texlive-revision)))
5246 (file-name (string-append name "-" version "-checkout"))
5247 (sha256
5248 (base32
5249 "1sp3jblg3khp0yj121blvhph6ib09919kyrsk5x2lg258yypqyis"))))
5250 (build-system trivial-build-system)
5251 (arguments
5252 `(#:modules ((guix build utils)
5253 (ice-9 match))
5254 #:builder
5255 (begin
5256 (use-modules (guix build utils)
5257 (ice-9 match))
5258 (let ((root (string-append (assoc-ref %outputs "out")
5259 "/share/texmf-dist/"))
5260 (pkgs '(("source" . "fonts/type1/urw/zapfding")
5261 ("zapf-afm" . "fonts/afm/adobe/zapfding")
5262 ("zapf-tfm" . "fonts/tfm/adobe/zapfding")
5263 ("urw-afm" . "fonts/afm/urw/zapfding")
5264 ("urw35vf-tfm" . "fonts/tfm/urw35vf/zapfding")
5265
5266 ("zapf-tex" . "tex/latex/zapfding")
5267 ("dvips" . "dvips/zapfding")
5268 ("fonts-map" . "fonts/map/dvips/zapfding"))))
5269 (for-each (match-lambda
5270 ((pkg . dir)
5271 (let ((target (string-append root dir)))
5272 (mkdir-p target)
5273 (copy-recursively (assoc-ref %build-inputs pkg)
5274 target))))
5275 pkgs)
5276 #t))))
5277 (native-inputs
5278 `(("zapf-afm"
5279 ,(origin
5280 (method svn-fetch)
5281 (uri (svn-reference
5282 (url (string-append "svn://www.tug.org/texlive/tags/"
5283 %texlive-tag "/Master/texmf-dist/"
5284 "/fonts/afm/adobe/zapfding"))
5285 (revision %texlive-revision)))
5286 (file-name (string-append name "-afm-" version "-checkout"))
5287 (sha256
5288 (base32
5289 "0qvl4w1bfcpiakkd8rvkism46qnvzj9w7x4r8z9m0y7mspbkblyr"))))
5290 ("zapf-tfm"
5291 ,(origin
5292 (method svn-fetch)
5293 (uri (svn-reference
5294 (url (string-append "svn://www.tug.org/texlive/tags/"
5295 %texlive-tag "/Master/texmf-dist/"
5296 "/fonts/tfm/adobe/zapfding"))
5297 (revision %texlive-revision)))
5298 (file-name (string-append name "-tfm-" version "-checkout"))
5299 (sha256
5300 (base32
5301 "1i8mh9xsl8l4cgsg3nl4ha9q6m55j122riclaxsvkc5ka83432qm"))))
5302 ("urw-afm"
5303 ,(origin
5304 (method svn-fetch)
5305 (uri (svn-reference
5306 (url (string-append "svn://www.tug.org/texlive/tags/"
5307 %texlive-tag "/Master/texmf-dist/"
5308 "/fonts/afm/urw/zapfding"))
5309 (revision %texlive-revision)))
5310 (file-name (string-append name "-urw-afm-" version "-checkout"))
5311 (sha256
5312 (base32
5313 "0m4qndqh7ji723ff82c5c1q8ziqvblbaip7vx05vnl15fqbsnfx1"))))
5314 ("urw35vf-tfm"
5315 ,(origin
5316 (method svn-fetch)
5317 (uri (svn-reference
5318 (url (string-append "svn://www.tug.org/texlive/tags/"
5319 %texlive-tag "/Master/texmf-dist/"
5320 "/fonts/tfm/urw35vf/zapfding"))
5321 (revision %texlive-revision)))
5322 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5323 (sha256
5324 (base32
5325 "167g2x6mpjfqh0w1fhjbw14qcx6ridrj2zm1bd8bi0l2d7phj28m"))))
5326 ("zapf-tex"
5327 ,(origin
5328 (method svn-fetch)
5329 (uri (svn-reference
5330 (url (string-append "svn://www.tug.org/texlive/tags/"
5331 %texlive-tag "/Master/texmf-dist/"
5332 "/tex/latex/zapfding"))
5333 (revision %texlive-revision)))
5334 (file-name (string-append name "-tex-" version "-checkout"))
5335 (sha256
5336 (base32
5337 "0hp7i8f6nbrg7irrwc8fd7n1hrzjysa84d6iyivwlc65v9p7lmd0"))))
5338 ("dvips"
5339 ,(origin
5340 (method svn-fetch)
5341 (uri (svn-reference
5342 (url (string-append "svn://www.tug.org/texlive/tags/"
5343 %texlive-tag "/Master/texmf-dist/"
5344 "/dvips/zapfding/"))
5345 (revision %texlive-revision)))
5346 (file-name (string-append name "-dvips-" version "-checkout"))
5347 (sha256
5348 (base32
5349 "1f18sc4qwxykd786zhn6szcrycqvpvfhlcim71aamxmwghakd7fa"))))
5350 ("fonts-map"
5351 ,(origin
5352 (method svn-fetch)
5353 (uri (svn-reference
5354 (url (string-append "svn://www.tug.org/texlive/tags/"
5355 %texlive-tag "/Master/texmf-dist/"
5356 "/fonts/map/dvips/zapfding/"))
5357 (revision %texlive-revision)))
5358 (file-name (string-append name "-fonts-map-" version "-checkout"))
5359 (sha256
5360 (base32
5361 "17kwxmdrgz2fb072hx57a3pidcrhbgayphx11zyld2hv9149pkyl"))))))
5362 (home-page "https://ctan.org/pkg/urw-base35")
5363 (synopsis "URW Base 35 font pack for LaTeX")
5364 (description
5365 "This package provides a drop-in replacements for the Zapfding font from
5366Adobe's basic set.")
5367 ;; No license version specified.
5368 (license license:gpl3+)))
5369
f45a5520
RW
5370(define-public texlive-fonts-rsfs
5371 (package
5372 (name "texlive-fonts-rsfs")
5373 (version (number->string %texlive-revision))
5374 (source (origin
5375 (method svn-fetch)
5376 (uri (svn-reference
5377 (url (string-append "svn://www.tug.org/texlive/tags/"
5378 %texlive-tag "/Master/texmf-dist/"
5379 "/fonts/source/public/rsfs/"))
5380 (revision %texlive-revision)))
e26de9c9 5381 (file-name (string-append name "-" version "-checkout"))
f45a5520
RW
5382 (sha256
5383 (base32
5384 "0r12pn02r4a955prcvq0048nifh86ihlcgvw3pppqqvfngv34l5h"))))
5385 (build-system gnu-build-system)
5386 (arguments
5387 `(#:modules ((guix build gnu-build-system)
5388 (guix build utils)
5389 (srfi srfi-1)
5390 (srfi srfi-26))
5391 #:tests? #f ; no tests
5392 #:phases
5393 (modify-phases %standard-phases
5394 (delete 'configure)
5395 (replace 'build
5396 (lambda* (#:key inputs #:allow-other-keys)
5397 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
5398 ;; Tell mf where to find mf.base
5399 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
5400 ;; Tell mf where to look for source files
5401 (setenv "MFINPUTS"
5402 (string-append (getcwd) ":"
5403 mf "/share/texmf-dist/metafont/base:"
5404 (assoc-ref inputs "texlive-fonts-cm")
5405 "/share/texmf-dist/fonts/source/public/cm")))
5406 (mkdir "build")
d8ac82c2
MW
5407 (for-each (lambda (font)
5408 (format #t "building font ~a\n" font)
5409 (invoke "mf" "-progname=mf"
5410 "-output-directory=build"
5411 (string-append "\\"
5412 "mode:=ljfour; "
5413 "mag:=1; "
5414 "batchmode; "
5415 "input " (basename font ".mf"))))
5416 (find-files "." "[0-9]+\\.mf$"))
5417 #t))
f45a5520
RW
5418 (replace 'install
5419 (lambda* (#:key outputs #:allow-other-keys)
5420 (let* ((out (assoc-ref outputs "out"))
5421 (tfm (string-append
5422 out "/share/texmf-dist/fonts/tfm/public/rsfs"))
5423 (mf (string-append
5424 out "/share/texmf-dist/fonts/source/public/rsfs")))
5425 (for-each (cut install-file <> tfm)
5426 (find-files "build" "\\.*"))
5427 (for-each (cut install-file <> mf)
5428 (find-files "." "\\.mf"))
5429 #t))))))
5430 (native-inputs
5431 `(("texlive-bin" ,texlive-bin)
5432 ("texlive-metafont-base" ,texlive-metafont-base)
5433 ("texlive-fonts-cm" ,texlive-fonts-cm)))
b8d8806b 5434 (home-page "https://www.ctan.org/pkg/rsfs")
f45a5520
RW
5435 (synopsis "Ralph Smith's Formal Script font")
5436 (description
5437 "The fonts provide uppercase formal script letters for use as symbols in
5438scientific and mathematical typesetting (in contrast to the informal script
5439fonts such as that used for the calligraphic symbols in the TeX maths symbol
5440font). The fonts are provided as Metafont source, and as derived Adobe Type 1
5441format. LaTeX support, for using these fonts in mathematics, is available via
5442one of the packages @code{calrsfs} and @code{mathrsfs}.")
5443 (license (license:fsf-free "http://mirrors.ctan.org/fonts/rsfs/README"))))
5444
1562763c
RW
5445(define-public texlive-latex-eso-pic
5446 (package
5447 (name "texlive-latex-eso-pic")
5448 (version (number->string %texlive-revision))
5449 (source (origin
5450 (method svn-fetch)
5451 (uri (texlive-ref "latex" "eso-pic"))
2678a63b 5452 (file-name (string-append name "-" version "-checkout"))
1562763c
RW
5453 (sha256
5454 (base32
5455 "1xvmms28mvvfpks9x7lfya2xhh5k8jy3qnlih1mzcnf156xnb89z"))))
5456 (build-system texlive-build-system)
5457 (arguments '(#:tex-directory "latex/eso-pic"))
b8d8806b 5458 (home-page "https://www.ctan.org/pkg/eso-pic")
1562763c
RW
5459 (synopsis "Add picture commands (or backgrounds) to every page")
5460 (description
5461 "The package adds one or more user commands to LaTeX's @code{shipout}
5462routine, which may be used to place the output at fixed positions. The
5463@code{grid} option may be used to find the correct places.")
5464 (license license:lppl1.3+)))
5465
ae3779d5
RW
5466(define-public texlive-latex-eepic
5467 (package
5468 (name "texlive-latex-eepic")
5469 (version (number->string %texlive-revision))
5470 (source (origin
5471 (method svn-fetch)
5472 (uri (svn-reference
5473 (url (string-append "svn://www.tug.org/texlive/tags/"
5474 %texlive-tag "/Master/texmf-dist/"
5475 "/tex/latex/eepic"))
5476 (revision %texlive-revision)))
84d63643 5477 (file-name (string-append name "-" version "-checkout"))
ae3779d5
RW
5478 (sha256
5479 (base32
5480 "1c68gvh021pvybg07apsd2xhq2ljbg80kq94wh71drdga3c2zqjw"))))
5481 (build-system trivial-build-system)
5482 (arguments
5483 `(#:modules ((guix build utils))
5484 #:builder
5485 (begin
5486 (use-modules (guix build utils))
5487 (let ((target (string-append (assoc-ref %outputs "out")
5488 "/share/texmf-dist/tex/latex/eepic")))
5489 (mkdir-p target)
5490 (copy-recursively (assoc-ref %build-inputs "source") target)
5491 #t))))
b8d8806b 5492 (home-page "https://www.ctan.org/pkg/eepic")
ae3779d5
RW
5493 (synopsis "Extensions to epic and the LaTeX drawing tools")
5494 (description
5495 "Extensions to @code{epic} and the LaTeX picture drawing environment,
5496include the drawing of lines at any slope, the drawing of circles in any
5497radii, and the drawing of dotted and dashed lines much faster with much less
5498TeX memory, and providing several new commands for drawing ellipses, arcs,
5499splines, and filled circles and ellipses. The package uses @code{tpic}
5500@code{\\special} commands.")
5501 (license license:public-domain)))
5502
245f1f31
RW
5503(define-public texlive-latex-enumitem
5504 (package
5505 (name "texlive-latex-enumitem")
5506 (version (number->string %texlive-revision))
5507 (source (origin
5508 (method svn-fetch)
5509 (uri (svn-reference
5510 (url (string-append "svn://www.tug.org/texlive/tags/"
5511 %texlive-tag "/Master/texmf-dist/"
5512 "/tex/latex/enumitem"))
5513 (revision %texlive-revision)))
5514 (file-name (string-append name "-" version "-checkout"))
5515 (sha256
5516 (base32
5517 "0q24b1bkdi9l6bw787bpggww83jh2vj8955aw2m5yccqbx4vgr5r"))))
5518 (build-system trivial-build-system)
5519 (arguments
5520 `(#:modules ((guix build utils))
5521 #:builder
5522 (begin
5523 (use-modules (guix build utils))
5524 (let ((target (string-append (assoc-ref %outputs "out")
5525 "/share/texmf-dist/tex/latex/enumitem")))
5526 (mkdir-p target)
5527 (copy-recursively (assoc-ref %build-inputs "source") target)
5528 #t))))
b8d8806b 5529 (home-page "https://www.ctan.org/pkg/enumitem")
245f1f31
RW
5530 (synopsis "Customize basic list environments")
5531 (description
5532 "This package is intended to ease customizing the three basic list
5533environments: @code{enumerate}, @code{itemize} and @code{description}. It
5534extends their syntax to allow an optional argument where a set of parameters
5535in the form @code{key=value} are available, for example:
5536@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
5537 (license license:lppl1.3+)))
5538
ecffeeb5
RW
5539(define-public texlive-latex-multirow
5540 (package
5541 (name "texlive-latex-multirow")
5542 (version (number->string %texlive-revision))
5543 (source (origin
5544 (method svn-fetch)
5545 (uri (texlive-ref "latex" "multirow"))
6a919804 5546 (file-name (string-append name "-" version "-checkout"))
ecffeeb5
RW
5547 (sha256
5548 (base32
5549 "0qlxy47f1f8plgch3jqfsnrdgpyz20sz46yp33i2jwvf9hvfczf0"))))
5550 (build-system texlive-build-system)
5551 (arguments '(#:tex-directory "latex/multirow"))
b8d8806b 5552 (home-page "https://www.ctan.org/pkg/multirow")
ecffeeb5
RW
5553 (synopsis "Create tabular cells spanning multiple rows")
5554 (description
5555 "The package provides tools for creating tabular cells spanning multiple
5556rows. It has a lot of flexibility, including an option for specifying an
5557entry at the \"natural\" width of its text.")
5558 (license license:lppl1.3+)))
5559
da38b235
RW
5560(define-public texlive-latex-overpic
5561 (package
5562 (name "texlive-latex-overpic")
5563 (version (number->string %texlive-revision))
5564 (source (origin
5565 (method svn-fetch)
5566 (uri (svn-reference
5567 (url (string-append "svn://www.tug.org/texlive/tags/"
5568 %texlive-tag "/Master/texmf-dist/"
5569 "/tex/latex/overpic"))
5570 (revision %texlive-revision)))
b2aef721 5571 (file-name (string-append name "-" version "-checkout"))
da38b235
RW
5572 (sha256
5573 (base32
d4d9a1ec 5574 "1rpx4ibjncj5416rg19v0xjbj3z9avhfdfn2gzp8r8sz9vz25c6g"))))
da38b235
RW
5575 (build-system trivial-build-system)
5576 (arguments
5577 `(#:modules ((guix build utils))
5578 #:builder
5579 (begin
5580 (use-modules (guix build utils))
5581 (let ((target (string-append (assoc-ref %outputs "out")
5582 "/share/texmf-dist/tex/latex/overpic")))
5583 (mkdir-p target)
5584 (copy-recursively (assoc-ref %build-inputs "source") target)
5585 #t))))
b8d8806b 5586 (home-page "https://www.ctan.org/pkg/overpic")
da38b235
RW
5587 (synopsis "Combine LaTeX commands over included graphics")
5588 (description
5589 "The @code{overpic} environment is a cross between the LaTeX
5590@code{picture} environment and the @code{\\includegraphics} command of
5591@code{graphicx}. The resulting picture environment has the same dimensions as
5592the included graphic. LaTeX commands can be placed on the graphic at defined
5593positions; a grid for orientation is available.")
5594 (license license:lppl1.0+)))
5595
e0d307d1
RW
5596(define-public texlive-latex-parskip
5597 (package
5598 (name "texlive-latex-parskip")
5599 (version (number->string %texlive-revision))
5600 (source (origin
5601 (method svn-fetch)
5602 (uri (svn-reference
5603 (url (string-append "svn://www.tug.org/texlive/tags/"
5604 %texlive-tag "/Master/texmf-dist/"
5605 "/tex/latex/parskip"))
5606 (revision %texlive-revision)))
5607 (file-name (string-append name "-" version "-checkout"))
5608 (sha256
5609 (base32
5610 "14r6h9hqb0qgccxj5l1208694fx8sb8avmgzps36lsbbpszl7i7m"))))
5611 (build-system trivial-build-system)
5612 (arguments
5613 `(#:modules ((guix build utils))
5614 #:builder
5615 (begin
5616 (use-modules (guix build utils))
5617 (let ((target (string-append (assoc-ref %outputs "out")
5618 "/share/texmf-dist/tex/latex/parskip")))
5619 (mkdir-p target)
5620 (copy-recursively (assoc-ref %build-inputs "source") target)
5621 #t))))
b8d8806b 5622 (home-page "https://www.ctan.org/pkg/parskip")
e0d307d1
RW
5623 (synopsis "Layout with zero \\parindent, non-zero \\parskip")
5624 (description
5625 "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
5626that is untidy; this package (though it is no substitute for a properly
5627designed class) helps alleviate this untidiness.")
5628 (license license:lppl)))
5629
adc02c70
RW
5630(define-public texlive-latex-pdfpages
5631 (package
5632 (name "texlive-latex-pdfpages")
5633 (version (number->string %texlive-revision))
5634 (source (origin
5635 (method svn-fetch)
5636 (uri (texlive-ref "latex" "pdfpages"))
7372ce18 5637 (file-name (string-append name "-" version "-checkout"))
adc02c70
RW
5638 (sha256
5639 (base32
d4d9a1ec 5640 "0s4izcah7im67889qz4d26pcfpasmm35sj1rw4ragkkdk3rlbbbd"))))
adc02c70
RW
5641 (build-system texlive-build-system)
5642 (arguments '(#:tex-directory "latex/pdfpages"))
b8d8806b 5643 (home-page "https://www.ctan.org/pkg/pdfpages")
adc02c70
RW
5644 (synopsis "Include PDF documents in LaTeX")
5645 (description
5646 "This package simplifies the inclusion of external multi-page PDF
5647documents in LaTeX documents. Pages may be freely selected and it is possible
5648to put several logical pages onto each sheet of paper. Furthermore a lot of
5649hypertext features like hyperlinks and article threads are provided. The
5650package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to
5651use this package to insert PostScript files, in addition to PDF files.")
5652 (license license:lppl1.3+)))
5653
d8fef6ea
RW
5654(define-public texlive-fonts-stmaryrd
5655 (package
5656 (name "texlive-fonts-stmaryrd")
5657 (version (number->string %texlive-revision))
5658 (source (origin
5659 (method svn-fetch)
5660 (uri (texlive-ref "fonts" "stmaryrd"))
19835372 5661 (file-name (string-append name "-" version "-checkout"))
d8fef6ea
RW
5662 (sha256
5663 (base32
5664 "08pn4ca3vl6qm9l3wm5h5iyjsrg411kkm1yana329xwg2j14s9n6"))))
5665 (build-system texlive-build-system)
5666 (arguments
5667 '(#:tex-directory "latex/stmaryrd"
5668 #:phases
5669 (modify-phases %standard-phases
5670 (add-after 'configure 'patch-ins
5671 (lambda _
5672 (substitute* "stmaryrd.ins"
5673 (("^%% LaTeX2e.*") "\\input docstrip\n")
5674 (("fontdef\\}\\}" line)
5675 (string-append line "\n\\endbatchfile")))
5676 #t)))))
b8d8806b 5677 (home-page "https://www.ctan.org/pkg/stmaryrd")
d8fef6ea
RW
5678 (synopsis "St Mary Road symbols for theoretical computer science")
5679 (description
5680 "The fonts were originally distributed as Metafont sources only, but
5681Adobe Type 1 versions are also now available. Macro support is provided for
5682use under LaTeX; the package supports the @code{only} option (provided by the
5683@code{somedefs} package) to restrict what is loaded, for those who don't need
5684the whole font.")
5685 (license license:lppl)))
5686
2db3a034
RW
5687(define-public texlive-latex-subfigure
5688 (package
5689 (name "texlive-latex-subfigure")
5690 (version (number->string %texlive-revision))
5691 (source (origin
5692 (method svn-fetch)
5693 (uri (texlive-ref "latex" "subfigure"))
e1834df6 5694 (file-name (string-append name "-" version "-checkout"))
2db3a034
RW
5695 (sha256
5696 (base32
5697 "15spcl5wb7w269qd6y596vp4yi8sa5ppcx8w4z2i9kyp02r3a0yb"))))
5698 (build-system texlive-build-system)
5699 (arguments '(#:tex-directory "latex/subfigure"))
b8d8806b 5700 (home-page "https://www.ctan.org/pkg/subfigure")
2db3a034
RW
5701 (synopsis "Figures divided into subfigures")
5702 (description
5703 "This (deprecated) package provides support for the manipulation and
5704reference of small or \"sub\" figures and tables within a single figure or
5705table environment. It is convenient to use this package when your subfigures
5706are to be separately captioned, referenced, or are to be included in the
5707List-of-Figures. A new @code{\\subfigure} command is introduced which can be
5708used inside a figure environment for each subfigure. An optional first
5709argument is used as the caption for that subfigure. The package is now
5710considered obsolete: it was superseded by @code{subfig}, but users may find
5711the more recent @code{subcaption} package more satisfactory.")
5712 (license license:lppl)))
5713
c73d0e9d
RW
5714(define-public texlive-latex-tabulary
5715 (package
5716 (name "texlive-latex-tabulary")
5717 (version (number->string %texlive-revision))
5718 (source (origin
5719 (method svn-fetch)
5720 (uri (texlive-ref "latex" "tabulary"))
5721 (file-name (string-append name "-" version "-checkout"))
5722 (sha256
5723 (base32
5724 "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
5725 (build-system texlive-build-system)
5726 (arguments '(#:tex-directory "latex/tabulary"))
b8d8806b 5727 (home-page "https://www.ctan.org/pkg/tabulary")
c73d0e9d
RW
5728 (synopsis "Tabular with variable width columns balanced")
5729 (description
5730 "The package defines a @code{tabular*}-like environment, @code{tabulary},
5731taking a \"total width\" argument as well as the column specifications. The
5732environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for
5733variable width columns (@code{\\raggedright}, @code{\\centering},
5734@code{\\raggedleft}, and normally justified). In contrast to
5735@code{tabularx}'s @code{X} columns, the width of each column is weighted
5736according to the natural width of the widest cell in the column.")
5737 (license license:lppl)))
5738
e3088297
RW
5739(define-public texlive-latex-threeparttable
5740 (package
5741 (name "texlive-latex-threeparttable")
5742 (version (number->string %texlive-revision))
5743 (source (origin
5744 (method svn-fetch)
5745 (uri (svn-reference
5746 (url (string-append "svn://www.tug.org/texlive/tags/"
5747 %texlive-tag "/Master/texmf-dist/"
5748 "/tex/latex/threeparttable"))
5749 (revision %texlive-revision)))
d57e5d41 5750 (file-name (string-append name "-" version "-checkout"))
e3088297
RW
5751 (sha256
5752 (base32
5753 "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
5754 (build-system trivial-build-system)
5755 (arguments
5756 `(#:modules ((guix build utils))
5757 #:builder
5758 (begin
5759 (use-modules (guix build utils))
5760 (let ((target (string-append (assoc-ref %outputs "out")
5761 "/share/texmf-dist/tex/latex/threeparttable")))
5762 (mkdir-p target)
5763 (copy-recursively (assoc-ref %build-inputs "source") target)
5764 #t))))
b8d8806b 5765 (home-page "https://www.ctan.org/pkg/threeparttable")
e3088297
RW
5766 (synopsis "Tables with captions and notes all the same width")
5767 (description
5768 "This package facilitates tables with titles (captions) and notes. The
5769title and notes are given a width equal to the body of the table (a
5770@code{tabular} environment). By itself, a @code{threeparttable} does not
5771float, but you can put it in a @code{table} or a @code{table*} or some other
5772environment.")
5773 (license (license:fsf-free "file://threeparttable.sty"))))
5774
1b10d494
RW
5775(define-public texlive-fonts-txfonts
5776 (package
5777 (name "texlive-fonts-txfonts")
5778 (version (number->string %texlive-revision))
5779 (source (origin
5780 (method svn-fetch)
5781 (uri (svn-reference
5782 (url (string-append "svn://www.tug.org/texlive/tags/"
5783 %texlive-tag "/Master/texmf-dist/"
5784 "/tex/latex/txfonts"))
5785 (revision %texlive-revision)))
5786 (file-name (string-append name "-" version "-checkout"))
5787 (sha256
5788 (base32
5789 "0jl921qdphg8i7bkfprackn3xd4gmvxckc526nmzqsmahqkavgg2"))))
5790 (build-system trivial-build-system)
5791 (arguments
5792 `(#:modules ((guix build utils)
5793 (ice-9 match))
5794 #:builder
5795 (begin
5796 (use-modules (guix build utils)
5797 (ice-9 match))
5798 (let ((root (string-append (assoc-ref %outputs "out")
5799 "/share/texmf-dist/"))
5800 (pkgs '(("source" . "tex/latex/txfonts")
5801 ("txfonts-vf" . "fonts/tfm/public/txfonts")
5802 ("txfonts-afm" . "fonts/afm/public/txfonts")
5803 ("txfonts-tfm" . "fonts/tfm/public/txfonts")
5804 ("txfonts-type1" . "fonts/type1/public/txfonts")
5805 ("txfonts-enc" . "fonts/enc/dvips/txfonts")
5806 ("txfonts-map" . "fonts/map/dvips/txfonts"))))
5807 (for-each (match-lambda
5808 ((pkg . dir)
5809 (let ((target (string-append root dir)))
5810 (mkdir-p target)
5811 (copy-recursively (assoc-ref %build-inputs pkg)
5812 target))))
5813 pkgs)
5814 #t))))
5815 (native-inputs
5816 `(("txfonts-tfm"
5817 ,(origin
5818 (method svn-fetch)
5819 (uri (svn-reference
5820 (url (string-append "svn://www.tug.org/texlive/tags/"
5821 %texlive-tag "/Master/texmf-dist/"
5822 "/fonts/tfm/public/txfonts"))
5823 (revision %texlive-revision)))
5824 (file-name (string-append name "-tfm-" version "-checkout"))
5825 (sha256
5826 (base32
5827 "12ffmbrp48ap35qa3b4mi6ckif9q2vf7972jxh5dc1yzykhla2xv"))))
5828 ("txfonts-vf"
5829 ,(origin
5830 (method svn-fetch)
5831 (uri (svn-reference
5832 (url (string-append "svn://www.tug.org/texlive/tags/"
5833 %texlive-tag "/Master/texmf-dist/"
5834 "/fonts/vf/public/txfonts"))
5835 (revision %texlive-revision)))
5836 (file-name (string-append name "-vf-" version "-checkout"))
5837 (sha256
5838 (base32
5839 "04acyfdwvxpfx4l2xh2bpzdmpvwdf2pzbs7a236b0xckz2jvc1ci"))))
5840 ("txfonts-afm"
5841 ,(origin
5842 (method svn-fetch)
5843 (uri (svn-reference
5844 (url (string-append "svn://www.tug.org/texlive/tags/"
5845 %texlive-tag "/Master/texmf-dist/"
5846 "/fonts/afm/public/txfonts"))
5847 (revision %texlive-revision)))
5848 (file-name (string-append name "-afm-" version "-checkout"))
5849 (sha256
5850 (base32
5851 "1705klz51pnqzcs89s3521b84b6c89wlczflsh0vci66nl155yis"))))
5852 ("txfonts-type1"
5853 ,(origin
5854 (method svn-fetch)
5855 (uri (svn-reference
5856 (url (string-append "svn://www.tug.org/texlive/tags/"
5857 %texlive-tag "/Master/texmf-dist/"
5858 "/fonts/type1/public/txfonts"))
5859 (revision %texlive-revision)))
5860 (file-name (string-append name "-type1-" version "-checkout"))
5861 (sha256
5862 (base32
5863 "0ajwr7zb6ch3gxd0g8p2i4llhy2wr9a9saz6jq6hm6fxf4pgl5h3"))))
5864 ("txfonts-map"
5865 ,(origin
5866 (method svn-fetch)
5867 (uri (svn-reference
5868 (url (string-append "svn://www.tug.org/texlive/tags/"
5869 %texlive-tag "/Master/texmf-dist/"
5870 "/fonts/map/dvips/txfonts"))
5871 (revision %texlive-revision)))
5872 (file-name (string-append name "-map-" version "-checkout"))
5873 (sha256
5874 (base32
5875 "0kamr8a9x24jakas3v09dgv7kkpybj3i7qv4vz1iyypqr6kk1raj"))))
5876 ("txfonts-enc"
5877 ,(origin
5878 (method svn-fetch)
5879 (uri (svn-reference
5880 (url (string-append "svn://www.tug.org/texlive/tags/"
5881 %texlive-tag "/Master/texmf-dist/"
5882 "/fonts/enc/dvips/txfonts"))
5883 (revision %texlive-revision)))
5884 (file-name (string-append name "-enc-" version "-checkout"))
5885 (sha256
5886 (base32
5887 "1bal5fhw0xlhl37ayv8vlnqnsn1y82kadzfjhbgr223blspp4zsj"))))))
b8d8806b 5888 (home-page "https://www.ctan.org/pkg/threeparttable")
1b10d494
RW
5889 (synopsis "Times-like fonts in support of mathematics")
5890 (description
5891 "Txfonts supplies virtual text roman fonts using Adobe Times (or URW
5892NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,
5893and TS1 encodings; maths alphabets using Times/URW Nimbus; maths fonts
5894providing all the symbols of the Computer Modern and AMS fonts, including all
5895the Greek capital letters from CMR; and additional maths fonts of various
5896other symbols.
5897
5898The set is complemented by a sans-serif set of text fonts, based on
5899Helvetica/NimbusSanL, and a monospace set.
5900
5901All the fonts are in Type 1 format (AFM and PFB files), and are supported by
5902TeX metrics (VF and TFM files) and macros for use with LaTeX.")
5903 ;; Any version of the GPL with font exception.
5904 (license license:gpl3+)))
5905
f9e0fcb2
RW
5906(define-public texlive-fonts-iwona
5907 (package
5908 (name "texlive-fonts-iwona")
5909 (version "0.995b")
5910 (source (origin
5911 (method url-fetch)
5912 (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
5913 (string-map (lambda (c)
5914 (if (char=? c #\.)
5915 #\_ c))
5916 version)
5917 ".zip"))
5918 (sha256
5919 (base32
5920 "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
5921 (build-system trivial-build-system)
5922 (arguments
5923 `(#:modules ((guix build utils))
5924 #:builder
5925 (begin
5926 (use-modules (guix build utils))
5927 (let ((target (string-append (assoc-ref %outputs "out")
5928 "/share/texmf-dist/"))
5929 (unzip (string-append (assoc-ref %build-inputs "unzip")
5930 "/bin/unzip")))
e3cfef22 5931 (invoke unzip (assoc-ref %build-inputs "source"))
f9e0fcb2 5932 (mkdir-p target)
e3cfef22
MW
5933 (copy-recursively "iwona" target)
5934 #t))))
f9e0fcb2
RW
5935 (native-inputs
5936 `(("unzip" ,unzip)))
5937 (home-page "http://jmn.pl/en/kurier-i-iwona/")
5938 (synopsis "Sans-serif typeface for TeX")
5939 (description "Iwona is a two-element sans-serif typeface. It was created
5940as an alternative version of the Kurier typeface, which was designed in 1975
5941for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
5942supervision of Roman Tomaszewski. Kurier was designed for linotype
5943typesetting of newspapers and similar periodicals. The Iwona fonts are an
5944alternative version of the Kurier fonts. The difference lies in the absence
5945of ink traps which typify the Kurier font.")
5946 (license license:gfl1.0)))
5947
acc620d6
RW
5948(define-public texlive-latex-titlesec
5949 (package
5950 (name "texlive-latex-titlesec")
5951 (version (number->string %texlive-revision))
5952 (source (origin
5953 (method svn-fetch)
5954 (uri (svn-reference
5955 (url (string-append "svn://www.tug.org/texlive/tags/"
5956 %texlive-tag "/Master/texmf-dist/"
5957 "/tex/latex/titlesec"))
5958 (revision %texlive-revision)))
0475e35c 5959 (file-name (string-append name "-" version "-checkout"))
acc620d6
RW
5960 (sha256
5961 (base32
5962 "04nmkhqx6jxcxx9a30zbcd5smxi5fd0cbp132bki7fnvhspnhg21"))))
5963 (build-system trivial-build-system)
5964 (arguments
5965 `(#:modules ((guix build utils))
5966 #:builder
5967 (begin
5968 (use-modules (guix build utils))
5969 (let ((target (string-append (assoc-ref %outputs "out")
5970 "/share/texmf-dist/tex/latex/titlesec")))
5971 (mkdir-p target)
5972 (copy-recursively (assoc-ref %build-inputs "source") target)
5973 #t))))
b8d8806b 5974 (home-page "https://www.ctan.org/pkg/titlesec")
acc620d6
RW
5975 (synopsis "Select alternative section titles")
5976 (description
5977 "This package provides an interface to sectioning commands for selection
5978from various title styles, e.g. for marginal titles and to change the font of
5979all headings with a single command, also providing simple one-step page
5980styles. It also includes a package to change the page styles when there are
5981floats in a page. You may assign headers/footers to individual floats, too.")
5982 (license license:lppl)))
5983
274e3d4f
RW
5984(define-public texlive-latex-type1cm
5985 (package
5986 (name "texlive-latex-type1cm")
5987 (version (number->string %texlive-revision))
5988 (source (origin
5989 (method svn-fetch)
5990 (uri (texlive-ref "latex" "type1cm"))
5991 (file-name (string-append name "-" version "-checkout"))
5992 (sha256
5993 (base32
5994 "1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
5995 (build-system texlive-build-system)
5996 (arguments '(#:tex-directory "latex/type1cm"))
b8d8806b 5997 (home-page "https://www.ctan.org/pkg/type1cm")
274e3d4f
RW
5998 (synopsis "Arbitrary size font selection in LaTeX")
5999 (description
6000 "LaTeX, by default, restricts the sizes at which you can use its default
6001computer modern fonts, to a fixed set of discrete sizes (effectively, a set
6002specified by Knuth). The @code{type1cm} package removes this restriction;
6003this is particularly useful when using scalable versions of the CM
6004fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
6005PCTeX, etc.). In fact, since modern distributions will automatically generate
6006any bitmap font you might need, @code{type1cm} has wider application than just
36a17f05 6007those using scalable versions of the fonts. Note that the LaTeX distribution
274e3d4f
RW
6008now contains a package @code{fix-cm},f which performs the task of
6009@code{type1cm}, as well as doing the same job for T1- and TS1-encoded
6010@code{ec} fonts.")
6011 (license license:lppl)))
6012
406af0d6
RW
6013(define-public texlive-latex-lh
6014 (package
6015 (name "texlive-latex-lh")
6016 (version (number->string %texlive-revision))
6017 (source (origin
6018 (method svn-fetch)
6019 (uri (texlive-ref "latex" "lh"))
de20fd6a 6020 (file-name (string-append name "-" version "-checkout"))
406af0d6
RW
6021 (sha256
6022 (base32
6023 "00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
6024 (build-system texlive-build-system)
6025 (arguments '(#:tex-directory "latex/lh"))
b8d8806b 6026 (home-page "https://www.ctan.org/pkg/lh")
406af0d6
RW
6027 (synopsis "Cyrillic fonts that support LaTeX standard encodings")
6028 (description
6029 "The LH fonts address the problem of the wide variety of alphabets that
6030are written with Cyrillic-style characters. The fonts are the original basis
6031of the set of T2* and X2 encodings that are now used when LaTeX users need to
6032write in Cyrillic languages. Macro support in standard LaTeX encodings is
6033offered through the latex-cyrillic and t2 bundles, and the package itself
6034offers support for other (more traditional) encodings. The fonts, in the
6035standard T2* and X2 encodings are available in Adobe Type 1 format, in the
6036CM-Super family of fonts. The package also offers its own LaTeX support for
6037OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
6038 (license license:lppl)))
6039
44436def
RW
6040(define-public texlive-metapost
6041 (package
6042 (name "texlive-metapost")
6043 (version (number->string %texlive-revision))
6044 (source (origin
6045 (method svn-fetch)
6046 (uri (svn-reference
6047 (url (string-append "svn://www.tug.org/texlive/tags/"
6048 %texlive-tag "/Master/texmf-dist/"
6049 "/metapost"))
6050 (revision %texlive-revision)))
b4bb2750 6051 (file-name (string-append name "-" version "-checkout"))
44436def
RW
6052 (sha256
6053 (base32
d4d9a1ec 6054 "0sf18pc6chgy26p9bxxn44xcqhzjrfb53jxjr2y7l3jb6xllhblq"))))
44436def
RW
6055 (build-system trivial-build-system)
6056 (arguments
6057 `(#:modules ((guix build utils))
6058 #:builder
6059 (begin
6060 (use-modules (guix build utils))
6061 (let ((target (string-append (assoc-ref %outputs "out")
6062 "/share/texmf-dist/metapost")))
6063 (mkdir-p target)
6064 (copy-recursively (assoc-ref %build-inputs "source") target)
6065 #t))))
b8d8806b 6066 (home-page "https://www.ctan.org/pkg/metapost")
44436def
RW
6067 (synopsis "Create scalable illustrations")
6068 (description
6069 "MetaPost uses a language based on that of Metafont to produce precise
6070technical illustrations. Its output is scalable PostScript or SVG, rather
6071than the bitmaps Metafont creates.")
6072 (license license:lppl)))
6073
9ff7161a
LC
6074(define-public texlive-latex-acmart
6075 (package
6076 (name "texlive-latex-acmart")
ff281acc 6077 (version "1.60")
9ff7161a
LC
6078 (source (origin
6079 (method svn-fetch)
6080 (uri (texlive-ref "latex" "acmart"))
6081 (sha256
6082 (base32
ff281acc 6083 "0n62cs8dhcbn29y9ij1nnyigzr76yhk36kyahhqkkmvbafbys9s7"))
9ff7161a
LC
6084 (file-name (string-append name "-" version "-checkout"))))
6085 (build-system texlive-build-system)
6086 (arguments '(#:tex-directory "latex/acmart"))
b8d8806b 6087 (home-page "https://www.ctan.org/pkg/acmart")
9ff7161a
LC
6088 (synopsis "Class for typesetting publications of ACM")
6089 (description
6090 "This package provides a class for typesetting publications of the
6091Association for Computing Machinery (ACM).")
6092 (license license:lppl1.3+)))
6093
3966ebbb
RW
6094(define-public texlive-latex-varwidth
6095 (package
6096 (name "texlive-latex-varwidth")
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/varwidth"))
6104 (revision %texlive-revision)))
6105 (file-name (string-append name "-" version "-checkout"))
6106 (sha256
6107 (base32
6108 "1bmz9ap0ffyg7qry2xi7lki06qx4809w028xvk88cl66h7p46g52"))))
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/varwidth")))
6117 (mkdir-p target)
6118 (copy-recursively (assoc-ref %build-inputs "source") target)
6119 #t))))
b8d8806b 6120 (home-page "https://www.ctan.org/pkg/varwidth")
3966ebbb
RW
6121 (synopsis "Variable-width minipage")
6122 (description
6123 "The @code{varwidth} environment is superficially similar to
6124@code{minipage}, but the specified width is just a maximum value — the box may
6125get a narrower “natural” width.")
6126 (license license:lppl)))
6127
cd2c77f4
RW
6128(define-public texlive-latex-wasysym
6129 (package
6130 (name "texlive-latex-wasysym")
6131 (version (number->string %texlive-revision))
6132 (source (origin
6133 (method svn-fetch)
6134 (uri (texlive-ref "latex" "wasysym"))
2cc9c011 6135 (file-name (string-append name "-" version "-checkout"))
cd2c77f4
RW
6136 (sha256
6137 (base32
6138 "1sgwbfwjjf70g54hh93gsd9jp9nm67w6n74x9d72a56n07jbk5hv"))))
6139 (build-system texlive-build-system)
6140 (arguments '(#:tex-directory "latex/wasysym"))
b8d8806b 6141 (home-page "https://www.ctan.org/pkg/wasysym")
cd2c77f4
RW
6142 (synopsis "LaTeX support file to use the WASY2 fonts")
6143 (description
6144 "The wasy2WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs
6145like male and female symbols and astronomical symbols, as well as the complete
6146lasy font set and other odds and ends. The wasysym package implements an easy
6147to use interface for these symbols.")
6148 (license license:lppl)))
6149
63ed869b
RW
6150(define-public texlive-latex-wrapfig
6151 (package
6152 (name "texlive-latex-wrapfig")
6153 (version (number->string %texlive-revision))
6154 (source (origin
6155 (method svn-fetch)
6156 (uri (svn-reference
6157 (url (string-append "svn://www.tug.org/texlive/tags/"
6158 %texlive-tag "/Master/texmf-dist/"
6159 "/tex/latex/wrapfig"))
6160 (revision %texlive-revision)))
6161 (file-name (string-append name "-" version "-checkout"))
6162 (sha256
6163 (base32
6164 "16xpyl0csmmwndz1xhzqfg9l0zcsnqxslsixsqkwd4zsvfj30sv4"))))
6165 (build-system trivial-build-system)
6166 (arguments
6167 `(#:modules ((guix build utils))
6168 #:builder
6169 (begin
6170 (use-modules (guix build utils))
6171 (let ((target (string-append (assoc-ref %outputs "out")
6172 "/share/texmf-dist/tex/latex/wrapfig")))
6173 (mkdir-p target)
6174 (copy-recursively (assoc-ref %build-inputs "source") target)
6175 #t))))
b8d8806b 6176 (home-page "https://www.ctan.org/pkg/wrapfig")
63ed869b
RW
6177 (synopsis "Produces figures which text can flow around")
6178 (description
6179 "This package allows figures or tables to have text wrapped around them.
6180It does not work in combination with list environments, but can be used in a
6181@code{parbox} or @code{minipage}, and in two-column format.")
6182 (license license:lppl)))
6183
c178ffca
RW
6184(define-public texlive-latex-ucs
6185 (package
6186 (name "texlive-latex-ucs")
6187 (version (number->string %texlive-revision))
6188 (source (origin
6189 (method svn-fetch)
6190 (uri (svn-reference
6191 (url (string-append "svn://www.tug.org/texlive/tags/"
6192 %texlive-tag "/Master/texmf-dist/"
6193 "/tex/latex/ucs"))
6194 (revision %texlive-revision)))
6195 (file-name (string-append name "-" version "-checkout"))
6196 (sha256
6197 (base32
6198 "0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37"))))
6199 (build-system trivial-build-system)
6200 (arguments
6201 `(#:modules ((guix build utils))
6202 #:builder
6203 (begin
6204 (use-modules (guix build utils))
6205 (let ((target (string-append (assoc-ref %outputs "out")
6206 "/share/texmf-dist/tex/latex/ucs")))
6207 (mkdir-p target)
6208 (copy-recursively (assoc-ref %build-inputs "source") target)
6209 #t))))
b8d8806b 6210 (home-page "https://www.ctan.org/pkg/ucs")
c178ffca
RW
6211 (synopsis "Extended UTF-8 input encoding support for LaTeX")
6212 (description
6213 "The bundle provides the @code{ucs} package, and @code{utf8x.def},
6214together with a large number of support files. The @code{utf8x.def}
6215definition file for use with @code{inputenc} covers a wider range of Unicode
6216characters than does @code{utf8.def} in the LaTeX distribution. The package
6217provides facilities for efficient use of its large sets of Unicode characters.
6218Glyph production may be controlled by various options, which permits use of
6219non-ASCII characters when coding mathematical formulae. Note that the bundle
6220previously had an alias “unicode”; that alias has now been withdrawn, and no
6221package of that name now exists.")
6222 (license license:lppl1.3+)))
6223
86af0f2a
RW
6224(define-public texlive-latex-preview
6225 (package
6226 (name "texlive-latex-preview")
6227 (version (number->string %texlive-revision))
6228 (source (origin
6229 (method svn-fetch)
6230 (uri (texlive-ref "latex" "preview"))
6231 (file-name (string-append name "-" version "-checkout"))
6232 (sha256
6233 (base32
d4d9a1ec 6234 "1hpsk4yp08qvbl43kqiv0hhwxv3gcqqxcpahyv6ch2b38pbj4bh6"))))
86af0f2a
RW
6235 (build-system texlive-build-system)
6236 (arguments
6237 '(#:tex-directory "latex/preview"
6238 #:phases
6239 (modify-phases %standard-phases
6240 (add-after 'unpack 'remove-generated-file
6241 (lambda _
6242 (delete-file "preview.drv")
6243 #t)))))
b8d8806b 6244 (home-page "https://www.ctan.org/pkg/preview")
86af0f2a
RW
6245 (synopsis "Extract bits of a LaTeX source for output")
6246 (description
6247 "The main purpose of the preview package is the extraction of selected
6248elements from a LaTeX source, like formulas or graphics, into separate
6249pages of a DVI file. A flexible and convenient interface allows it to
6250specify what commands and constructs should be extracted. This works
6251with DVI files postprocessed by either Dvips and Ghostscript or
6252dvipng, but it also works when you are using PDFTeX for generating PDF
6253files.")
6254 (license license:gpl3+)))
6255
87b4360e
RW
6256(define-public texlive-latex-acronym
6257 (package
6258 (name "texlive-latex-acronym")
6259 (version (number->string %texlive-revision))
6260 (source (origin
6261 (method svn-fetch)
6262 (uri (texlive-ref "latex" "acronym"))
6263 (file-name (string-append name "-" version "-checkout"))
6264 (sha256
6265 (base32
6266 "0jmasg40bk53zdd2jc8nc18jvdai3p2wmamy7hwli8gls4nf25qp"))))
6267 (build-system texlive-build-system)
6268 (arguments '(#:tex-directory "latex/acronym"))
b8d8806b 6269 (home-page "https://www.ctan.org/pkg/acronym")
87b4360e
RW
6270 (synopsis "Expand acronyms at least once")
6271 (description
6272 "This package ensures that all acronyms used in the text are spelled out
6273in full at least once. It also provides an environment to build a list of
6274acronyms used. The package is compatible with PDF bookmarks. The package
6275requires the suffix package, which in turn requires that it runs under
6276e-TeX.")
6277 (license license:lppl1.3+)))
6278
fedb80ee
RW
6279(define-public texlive-generic-pdftex
6280 (package
6281 (name "texlive-generic-pdftex")
6282 (version (number->string %texlive-revision))
6283 (source (origin
6284 (method svn-fetch)
6285 (uri (svn-reference
6286 (url (string-append "svn://www.tug.org/texlive/tags/"
6287 %texlive-tag "/Master/texmf-dist/"
6288 "/tex/generic/pdftex"))
6289 (revision %texlive-revision)))
66e765a0 6290 (file-name (string-append name "-" version "-checkout"))
fedb80ee
RW
6291 (sha256
6292 (base32
6293 "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
6294 (build-system trivial-build-system)
6295 (arguments
6296 `(#:modules ((guix build utils))
6297 #:builder
6298 (begin
6299 (use-modules (guix build utils))
6300 (let ((target (string-append (assoc-ref %outputs "out")
7002a45d
PN
6301 "/share/texmf-dist/tex/generic/pdftex"))
6302 (target-map (string-append (assoc-ref %outputs "out")
6303 "/share/texmf-dist/fonts/map/pdftex")))
fedb80ee
RW
6304 (mkdir-p target)
6305 (copy-recursively (assoc-ref %build-inputs "source") target)
7002a45d
PN
6306 (mkdir-p target-map)
6307 (copy-recursively (assoc-ref %build-inputs "pdftex-map") target-map)
fedb80ee 6308 #t))))
7002a45d
PN
6309 (native-inputs
6310 `(("pdftex-map"
6311 ,(origin
6312 (method svn-fetch)
6313 (uri (svn-reference
6314 (url (string-append "svn://www.tug.org/texlive/tags/"
6315 %texlive-tag "/Master/texmf-dist/"
6316 "/fonts/map/pdftex"))
6317 (revision %texlive-revision)))
6318 (file-name (string-append name "-map-" version "-checkout"))
6319 (sha256
6320 (base32
d4d9a1ec 6321 "18jvcm0vwpg6wwzijvnb92xx78la45kkh71k6l44425krp2vnwm0"))))))
b8d8806b 6322 (home-page "https://www.ctan.org/pkg/pdftex")
fedb80ee
RW
6323 (synopsis "TeX extension for direct creation of PDF")
6324 (description
6325 "This package provides an extension of TeX which can be configured to
6326directly generate PDF documents instead of DVI.")
6327 (license license:gpl2+)))
6328
8bcdc23f 6329(define texlive-texmf
0aa34e82
AE
6330 (package
6331 (name "texlive-texmf")
3e1ebaab 6332 (version "20180414")
0aa34e82
AE
6333 (source texlive-texmf-src)
6334 (build-system gnu-build-system)
6335 (inputs
6336 `(("texlive-bin" ,texlive-bin)
6337 ("lua" ,lua)
6338 ("perl" ,perl)
6339 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
6340 ("ruby" ,ruby)
6341 ("tcsh" ,tcsh)))
6342 (arguments
6343 `(#:modules ((guix build gnu-build-system)
6344 (guix build utils)
6345 (srfi srfi-26))
a348af40
LC
6346
6347 ;; This package takes 4 GiB, which we can't afford to distribute from
6348 ;; our servers.
6349 #:substitutable? #f
6350
0aa34e82 6351 #:phases
4a6635f3
AE
6352 (modify-phases (map (cut assq <> %standard-phases)
6353 '(set-paths unpack patch-source-shebangs))
977403fe
RW
6354 (add-after 'unpack 'unset-environment-variables
6355 (lambda _
6356 (unsetenv "TEXMF")
6357 (unsetenv "TEXMFCNF")
6358 #t))
4a6635f3
AE
6359 (add-after 'patch-source-shebangs 'install
6360 (lambda* (#:key outputs #:allow-other-keys)
6361 (let ((share (string-append (assoc-ref outputs "out") "/share")))
6362 (mkdir-p share)
286eedec 6363 (invoke "mv" "texmf-dist" share))))
4a6635f3
AE
6364 (add-after 'install 'texmf-config
6365 (lambda* (#:key inputs outputs #:allow-other-keys)
6366 (let* ((out (assoc-ref outputs "out"))
6367 (share (string-append out "/share"))
6368 (texmfroot (string-append share "/texmf-dist/web2c"))
6369 (texmfcnf (string-append texmfroot "/texmf.cnf"))
6370 (texlive-bin (assoc-ref inputs "texlive-bin"))
6371 (texbin (string-append texlive-bin "/bin"))
6372 (tlpkg (string-append texlive-bin "/share/tlpkg")))
6373 ;; Register SHARE as TEXMFROOT in texmf.cnf.
6374 (substitute* texmfcnf
6375 (("TEXMFROOT = \\$SELFAUTOPARENT")
2d634d9b
FB
6376 (string-append "TEXMFROOT = " share))
6377 (("TEXMFLOCAL = \\$SELFAUTOGRANDPARENT/texmf-local")
6378 "TEXMFLOCAL = $SELFAUTODIR/share/texmf-local")
6379 (("!!\\$TEXMFLOCAL") "$TEXMFLOCAL"))
4a6635f3
AE
6380 ;; Register paths in texmfcnf.lua, needed for context.
6381 (substitute* (string-append texmfroot "/texmfcnf.lua")
6382 (("selfautodir:") out)
6383 (("selfautoparent:") (string-append share "/")))
6384 ;; Set path to TeXLive Perl modules
6385 (setenv "PERL5LIB"
6386 (string-append (getenv "PERL5LIB") ":" tlpkg))
6387 ;; Configure the texmf-dist tree; inspired from
6388 ;; http://slackbuilds.org/repository/13.37/office/texlive/
6389 (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
6390 (setenv "TEXMFCNF" texmfroot)
286eedec
MW
6391 (invoke "updmap-sys" "--nohash" "--syncwithtrees")
6392 (invoke "mktexlsr")
0371132c 6393 (invoke "fmtutil-sys" "--all")))))))
7a15a68f 6394 (properties `((max-silent-time . 9600))) ; don't time out while grafting
0aa34e82 6395 (synopsis "TeX Live, a package of the TeX typesetting system")
eb0119ef
AE
6396 (description
6397 "TeX Live provides a comprehensive TeX document production system.
6398It includes all the major TeX-related programs, macro packages, and fonts
6399that are free software, including support for many languages around the
0aa34e82
AE
6400world.
6401
6402This package contains the complete tree of texmf-dist data.")
132e14b4
EF
6403 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6404 (home-page "https://www.tug.org/texlive/")))
0aa34e82
AE
6405
6406(define-public texlive
6407 (package
6408 (name "texlive")
3e1ebaab 6409 (version "20180414")
0aa34e82
AE
6410 (source #f)
6411 (build-system trivial-build-system)
6412 (inputs `(("bash" ,bash) ; for wrap-program
6413 ("texlive-bin" ,texlive-bin)
6414 ("texlive-texmf" ,texlive-texmf)))
2d634d9b
FB
6415 (native-search-paths
6416 (list (search-path-specification
6417 (variable "TEXMFLOCAL")
6418 (files '("share/texmf-local")))))
0aa34e82
AE
6419 (arguments
6420 `(#:modules ((guix build utils))
6421 #:builder
6422 ;; Build the union of texlive-bin and texlive-texmf, but take the
6423 ;; conflicting subdirectory share/texmf-dist from texlive-texmf.
6424 (begin
6425 (use-modules (guix build utils))
6426 (let ((out (assoc-ref %outputs "out"))
6427 (bin (assoc-ref %build-inputs "texlive-bin"))
6428 (texmf (assoc-ref %build-inputs "texlive-texmf"))
6429 (bash (assoc-ref %build-inputs "bash")))
6430 (mkdir out)
6431 (with-directory-excursion out
6432 (for-each
6433 (lambda (name)
6434 (symlink (string-append bin "/" name) name))
6435 '("include" "lib"))
6436 (mkdir "bin")
6437 (with-directory-excursion "bin"
6438 (setenv "PATH" (string-append bash "/bin"))
6439 (for-each
6440 (lambda (name)
6441 (symlink name (basename name))
6442 (wrap-program
6443 (basename name)
6444 `("TEXMFCNF" =
6445 (,(string-append texmf "/share/texmf-dist/web2c")))))
6446 (find-files (string-append bin "/bin/") "")))
6447 (mkdir "share")
6448 (with-directory-excursion "share"
6449 (for-each
6450 (lambda (name)
6451 (symlink (string-append bin "/share/" name) name))
6452 '("info" "man" "tlpkg"))
6453 (for-each
6454 (lambda (name)
6455 (symlink (string-append texmf "/share/" name) name))
e3cfef22
MW
6456 '("texmf-dist" "texmf-var"))))
6457 #t))))
0aa34e82
AE
6458 (synopsis "TeX Live, a package of the TeX typesetting system")
6459 (description
6460 "TeX Live provides a comprehensive TeX document production system.
6461It includes all the major TeX-related programs, macro packages, and fonts
6462that are free software, including support for many languages around the
6463world.
6464
6465This package contains the complete TeX Live distribution.")
132e14b4
EF
6466 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6467 (home-page "https://www.tug.org/texlive/")))
231eae53 6468
ebcf74da
RW
6469(define-public perl-text-bibtex
6470 (package
6471 (name "perl-text-bibtex")
a2460e0f 6472 (version "0.85")
ebcf74da
RW
6473 (source
6474 (origin
6475 (method url-fetch)
6476 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/Text-BibTeX-"
6477 version ".tar.gz"))
6478 (sha256
6479 (base32
a2460e0f 6480 "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h"))))
ebcf74da
RW
6481 (build-system perl-build-system)
6482 (arguments
6483 `(#:phases
6484 (modify-phases %standard-phases
6485 (add-after 'unpack 'add-output-directory-to-rpath
6486 (lambda* (#:key outputs #:allow-other-keys)
6487 (substitute* "inc/MyBuilder.pm"
6488 (("-Lbtparse" line)
6489 (string-append "-Wl,-rpath="
6490 (assoc-ref outputs "out") "/lib " line)))
6491 #t))
6492 (add-after 'unpack 'install-libraries-to-/lib
6493 (lambda* (#:key outputs #:allow-other-keys)
6494 (substitute* "Build.PL"
6495 (("lib64") "lib"))
6496 #t)))))
6497 (native-inputs
6498 `(("perl-capture-tiny" ,perl-capture-tiny)
6499 ("perl-config-autoconf" ,perl-config-autoconf)
6500 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6501 ("perl-module-build" ,perl-module-build)))
9aba9b12 6502 (home-page "https://metacpan.org/release/Text-BibTeX")
ebcf74da
RW
6503 (synopsis "Interface to read and parse BibTeX files")
6504 (description "@code{Text::BibTeX} is a Perl library for reading, parsing,
6505and processing BibTeX files. @code{Text::BibTeX} gives you access to the data
6506at many different levels: you may work with BibTeX entries as simple field to
6507string mappings, or get at the original form of the data as a list of simple
6508values (strings, macros, or numbers) pasted together.")
2f3108ad 6509 (license license:perl-license)))
ebcf74da 6510
d4000680
RW
6511(define-public biber
6512 (package
1335167a 6513 (name "biber")
41a01087 6514 (version "2.12")
d4000680 6515 (source (origin
41a01087
JL
6516 (method git-fetch)
6517 (uri (git-reference
6518 (url "https://github.com/plk/biber/")
6519 (commit (string-append "v" version))))
6520 (file-name (git-file-name name version))
6521 ;; TODO: Patch awaiting inclusion upstream (see:
6522 ;; https://github.com/plk/biber/issues/239).
6523 (patches (search-patches "biber-fix-encoding-write.patch"))
d4000680
RW
6524 (sha256
6525 (base32
41a01087 6526 "1g1hi6zvf2hmrjly1sidjaxy5440gfqm4p7p3n7kayshnjsmlskx"))))
d4000680
RW
6527 (build-system perl-build-system)
6528 (arguments
6529 `(#:phases
6530 (modify-phases %standard-phases
6531 (add-after 'install 'wrap-programs
6532 (lambda* (#:key outputs #:allow-other-keys)
6533 (let* ((out (assoc-ref outputs "out"))
6534 (perl5lib (getenv "PERL5LIB")))
6535 (wrap-program (string-append out "/bin/biber")
6536 `("PERL5LIB" ":" prefix
6537 (,(string-append perl5lib ":" out
6538 "/lib/perl5/site_perl")))))
6539 #t)))))
6540 (inputs
6541 `(("perl-autovivification" ,perl-autovivification)
6542 ("perl-class-accessor" ,perl-class-accessor)
6543 ("perl-data-dump" ,perl-data-dump)
6544 ("perl-data-compare" ,perl-data-compare)
6545 ("perl-data-uniqid" ,perl-data-uniqid)
6546 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
6547 ("perl-datetime-calendar-julian" ,perl-datetime-calendar-julian)
41a01087 6548 ("perl-file-slurper" ,perl-file-slurper)
d4000680
RW
6549 ("perl-ipc-cmd" ,perl-ipc-cmd)
6550 ("perl-ipc-run3" ,perl-ipc-run3)
6551 ("perl-list-allutils" ,perl-list-allutils)
6552 ("perl-list-moreutils" ,perl-list-moreutils)
6553 ("perl-mozilla-ca" ,perl-mozilla-ca)
6554 ("perl-regexp-common" ,perl-regexp-common)
6555 ("perl-log-log4perl" ,perl-log-log4perl)
6556 ;; We cannot use perl-unicode-collate here, because otherwise the
6557 ;; hardcoded hashes in the tests would differ. See
6558 ;; https://mail-archive.com/debian-bugs-dist@lists.debian.org/msg1469249.html
6559 ;;("perl-unicode-collate" ,perl-unicode-collate)
6560 ("perl-unicode-normalize" ,perl-unicode-normalize)
6561 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
6562 ("perl-encode-eucjpascii" ,perl-encode-eucjpascii)
6563 ("perl-encode-jis2k" ,perl-encode-jis2k)
6564 ("perl-encode-hanextra" ,perl-encode-hanextra)
6565 ("perl-xml-libxml" ,perl-xml-libxml)
6566 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)
6567 ("perl-xml-libxslt" ,perl-xml-libxslt)
6568 ("perl-xml-writer" ,perl-xml-writer)
6569 ("perl-sort-key" ,perl-sort-key)
6570 ("perl-text-csv" ,perl-text-csv)
6571 ("perl-text-csv-xs" ,perl-text-csv-xs)
6572 ("perl-text-roman" ,perl-text-roman)
6573 ("perl-uri" ,perl-uri)
6574 ("perl-text-bibtex" ,perl-text-bibtex)
6575 ("perl-libwww" ,perl-libwww)
6576 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
6577 ("perl-business-isbn" ,perl-business-isbn)
6578 ("perl-business-issn" ,perl-business-issn)
6579 ("perl-business-ismn" ,perl-business-ismn)
6580 ("perl-lingua-translit" ,perl-lingua-translit)))
6581 (native-inputs
6582 `(("perl-config-autoconf" ,perl-config-autoconf)
6583 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6584 ("perl-module-build" ,perl-module-build)
6585 ;; for tests
6586 ("perl-file-which" ,perl-file-which)
6587 ("perl-test-more" ,perl-test-most) ; FIXME: "more" would be sufficient
6588 ("perl-test-differences" ,perl-test-differences)))
6589 (home-page "http://biblatex-biber.sourceforge.net/")
6590 (synopsis "Backend for the BibLaTeX citation management tool")
6591 (description "Biber is a BibTeX replacement for users of biblatex. Among
6592other things it comes with full Unicode support.")
6593 (license license:artistic2.0)))
6594
231eae53
LC
6595(define-public rubber
6596 (package
6597 (name "rubber")
6598 (version "1.1")
6599 (source (origin
6600 (method url-fetch)
6601 (uri (list (string-append "https://launchpad.net/rubber/trunk/"
6602 version "/+download/rubber-"
6603 version ".tar.gz")
6604 (string-append "http://ebeffara.free.fr/pub/rubber-"
6605 version ".tar.gz")))
6606 (sha256
6607 (base32
6608 "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq"))))
6609 (build-system gnu-build-system)
6610 (arguments '(#:tests? #f)) ; no `check' target
6611 (inputs `(("texinfo" ,texinfo)
9bee5d6c 6612 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
231eae53
LC
6613 ("which" ,which)))
6614 (home-page "https://launchpad.net/rubber")
35b9e423 6615 (synopsis "Wrapper for LaTeX and friends")
231eae53
LC
6616 (description
6617 "Rubber is a program whose purpose is to handle all tasks related to the
6618compilation of LaTeX documents. This includes compiling the document itself,
6619of course, enough times so that all references are defined, and running BibTeX
6620to manage bibliographic references. Automatic execution of dvips to produce
6621PostScript documents is also included, as well as usage of pdfLaTeX to produce
6622PDF documents.")
6623 (license license:gpl2+)))
4791876c
RJ
6624
6625(define-public texmaker
6626 (package
6627 (name "texmaker")
585be42f 6628 (version "5.0.3")
4791876c
RJ
6629 (source (origin
6630 (method url-fetch)
6631 (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
6632 version ".tar.bz2"))
6633 (sha256
6634 (base32
585be42f 6635 "0vrj9w5lk3vf6138n5bz8phmy3xp5kv4dq1rgirghcf4hbxdyx30"))))
4791876c
RJ
6636 (build-system gnu-build-system)
6637 (arguments
6638 `(#:phases
6639 (modify-phases %standard-phases
6640 ;; Qt has its own configuration utility.
6641 (replace 'configure
6642 (lambda* (#:key outputs #:allow-other-keys)
6643 (let ((out (assoc-ref outputs "out")))
6c23ed9b
MW
6644 (invoke "qmake"
6645 (string-append "PREFIX=" out)
c36d9725 6646 (string-append "DESKTOPDIR=" out "/share/applications")
6c23ed9b 6647 (string-append "ICONDIR=" out "/share/pixmaps")
c36d9725 6648 (string-append "METAINFODIR=" out "/share/metainfo")
6c23ed9b 6649 "texmaker.pro")))))))
4791876c
RJ
6650 (inputs
6651 `(("poppler-qt5" ,poppler-qt5)
bd917486
TD
6652 ("qtbase" ,qtbase)
6653 ("qtscript" ,qtscript)
6654 ("qtwebkit" ,qtwebkit)
4791876c
RJ
6655 ("zlib" ,zlib)))
6656 (native-inputs
6657 `(("pkg-config" ,pkg-config)))
6658 (home-page "http://www.xm1math.net/texmaker/")
6659 (synopsis "LaTeX editor")
6660 (description "Texmaker is a program that integrates many tools needed to
6661develop documents with LaTeX, in a single application.")
6662 (license license:gpl2+)))
83457fe0 6663
83457fe0
JD
6664(define-public teximpatient
6665 (package
6666 (name "teximpatient")
6667 (version "2.4")
6668 (source (origin
4f2ee8e2 6669 (method url-fetch/tarbomb)
83457fe0
JD
6670 (uri (string-append "mirror://gnu/" name "/" name "-"
6671 version ".tar.gz"))
6672 (sha256
6673 (base32
6674 "0h56w22d99dh4fgld4ssik8ggnmhmrrbnrn1lnxi1zr0miphn1sd"))))
6675 (build-system gnu-build-system)
6676 (arguments
4f2ee8e2
RW
6677 `(#:tests? #f ; there are none
6678 #:phases
83457fe0 6679 (modify-phases %standard-phases
4f2ee8e2
RW
6680 (add-after 'unpack 'fix-packaging-error
6681 (lambda* (#:key inputs #:allow-other-keys)
6682 ;; This file should have been part of the tarball.
6683 (install-file (car
6684 (find-files
6685 (assoc-ref inputs "automake")
6686 "^install-sh$"))
6687 ".")
6688 ;; Remove generated file.
6689 (delete-file "book.pdf")
6690 #t)))))
83457fe0 6691 (native-inputs
4f2ee8e2
RW
6692 `(("texlive" ,(texlive-union (list texlive-latex-amsfonts
6693 texlive-fonts-amsfonts
6694 texlive-fonts-adobe-palatino
6695 texlive-fonts-adobe-zapfding
6696 texlive-fonts-knuth-lib
6697 texlive-fonts-mflogo-font
6698 texlive-generic-pdftex)))
83457fe0 6699 ("automake" ,automake)))
6fd52309 6700 (home-page "https://www.gnu.org/software/teximpatient/")
83457fe0
JD
6701 (synopsis "Book on TeX, plain TeX and Eplain")
6702 (description "@i{TeX for the Impatient} is a ~350 page book on TeX,
6703plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,
6704and Karl Berry.")
6705 (license license:fdl1.3+)))
ec40a050
DM
6706
6707(define-public lyx
6708 (package
6709 (name "lyx")
b17c8923 6710 (version "2.3.2-2")
ec40a050 6711 (source (origin
b17c8923 6712 (method url-fetch)
e5a03489
EF
6713 (uri (string-append "http://ftp.lyx.org/pub/lyx/stable/"
6714 (version-major+minor version) ".x/"
b17c8923
RW
6715 name "-" version ".tar.gz"))
6716 (sha256
6717 (base32
6718 "0vr0qwis6rhind6azfa270hqxci7rj8qb1kk5x6lm80mc34nvrqi"))
6719 (modules '((guix build utils)))
6720 (snippet
6721 '(begin
6722 (delete-file-recursively "3rdparty")
6723 #t))))
ec40a050
DM
6724 (build-system cmake-build-system)
6725 (arguments
6726 `(#:configure-flags `("-DLYX_USE_QT=QT5"
6727 "-DLYX_EXTERNAL_BOOST=1"
6728 "-DLYX_INSTALL=1"
6729 "-DLYX_RELEASE=1"
6730 ,(string-append "-DLYX_INSTALL_PREFIX="
6731 (assoc-ref %outputs "out")
6732 ;; Exact name and level is necessary.
e5a03489 6733 "/lyx" ,(version-major+minor version)))
ec40a050
DM
6734 #:phases
6735 (modify-phases %standard-phases
b17c8923
RW
6736 ;; See ;; https://www.lyx.org/trac/changeset/3a123b90af838b08680471d87170c38e56787df9/lyxgit
6737 (add-after 'unpack 'fix-compilation-with-boost-1.69
6738 (lambda _
6739 (substitute* "src/support/FileName.cpp"
6740 (("^template struct boost::detail::crc_table_t.*") ""))
6741 #t))
ec40a050
DM
6742 (add-after 'unpack 'patch-python
6743 (lambda* (#:key inputs #:allow-other-keys)
6744 (substitute* '("src/support/os.cpp")
b17c8923
RW
6745 (("\"python ")
6746 (string-append "\""
6747 (assoc-ref inputs "python")
6748 "/bin/python ")))
ec40a050
DM
6749 #t))
6750 (add-after 'patch-python 'patch-desktop-file
6751 (lambda* (#:key outputs #:allow-other-keys)
6752 (substitute* "lib/lyx.desktop.in"
b17c8923
RW
6753 (("Exec=")
6754 (string-append "Exec="
6755 (assoc-ref outputs "out")
6756 "/")))
ec40a050
DM
6757 #t))
6758 (add-before 'check 'setenv-check
6759 (lambda _
b17c8923
RW
6760 ;; Create missing file that would cause tests to fail.
6761 (with-output-to-file (string-append "../lyx-"
6762 ,version
6763 "/src/tests/check_layout.cmake")
6764 (const #t))
e5a03489
EF
6765 (setenv (string-append "LYX_DIR_"
6766 (string-join
6767 (string-split
6768 ,(version-major+minor version) #\-)) "x")
6769 (string-append (getcwd) "/../lyx-" ,version "/lib"))
ec40a050
DM
6770 #t))
6771 (add-after 'install 'install-symlinks
6772 (lambda* (#:key outputs #:allow-other-keys)
6773 (let ((out (assoc-ref outputs "out")))
6774 (mkdir-p (string-append out "/bin"))
e5a03489
EF
6775 (symlink (string-append "../lyx" ,(version-major+minor version)
6776 "/bin/lyx" ,(version-major+minor version))
6777 (string-append out "/bin/lyx" ,(version-major+minor version)))
ec40a050
DM
6778 #t))))))
6779 (inputs
6780 `(("boost" ,boost)
b17c8923 6781 ("hunspell" ,hunspell) ; Note: Could also use aspell instead.
ec40a050 6782 ("libx11" ,libx11)
b17c8923
RW
6783 ("mythes" ,mythes)
6784 ("python" ,python-2)
ec40a050
DM
6785 ("qtbase" ,qtbase)
6786 ("qtsvg" ,qtsvg)
6787 ("zlib" ,zlib)))
6788 (propagated-inputs
b17c8923
RW
6789 `(("texlive" ,(texlive-union (list texlive-fonts-ec)))))
6790 ;; FIXME: Python 3.7.0 cannot be used because the test infrastructure
6791 ;; "requires a bytes-like object, not 'str'". This may be fixed with
6792 ;; upgrades to Python.
ec40a050 6793 (native-inputs
b17c8923 6794 `(("python" ,python-2)
ec40a050
DM
6795 ("pkg-config" ,pkg-config)
6796 ("bc" ,bc)))
8960b2e6 6797 (home-page "https://www.lyx.org/")
ec40a050
DM
6798 (synopsis "Document preparation system with GUI")
6799 (description "LyX is a document preparation system. It excels at letting
6800you create complex technical and scientific articles with mathematics,
6801cross-references, bibliographies, indexes, etc. It is very good for working
6802with documents of any length in which the usual processing abilities are
6803required: automatic sectioning and pagination, spell checking and so forth.")
6804 (license license:gpl2+)))
7d50dff3
PN
6805
6806(define-public texlive-latex-media9
6807 (package
6808 (name "texlive-latex-media9")
6809 (version (number->string %texlive-revision))
6810 (source (origin
6811 (method svn-fetch)
6812 (uri (svn-reference
6813 (url (string-append "svn://www.tug.org/texlive/tags/"
6814 %texlive-tag "/Master/texmf-dist/"
6815 "/tex/latex/media9"))
6816 (revision %texlive-revision)))
6817 (file-name (string-append name "-" version "-checkout"))
6818 (sha256
6819 (base32
d4d9a1ec 6820 "0lhb2h5hxjq9alpk4r3gvg21pwyifs4ah6hqzp92k55mkp1xv73j"))))
7d50dff3
PN
6821 (build-system trivial-build-system)
6822 (arguments
6823 `(#:modules ((guix build utils))
6824 #:builder
6825 (begin
6826 (use-modules (guix build utils))
6827 (let ((target (string-append (assoc-ref %outputs "out")
6828 "/share/texmf-dist/tex/latex/media9")))
6829 (mkdir-p target)
6830 (copy-recursively (assoc-ref %build-inputs "source") target)
6831 #t))))
6832 (home-page "https://www.ctan.org/pkg/media9")
6833 (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
6834 (description
6835 "The package provides an interface to embed interactive Flash (SWF) and 3D
6836objects (Adobe U3D & PRC), as well as video and sound files or streams in the
6837popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
6838compatibility. Playback of multimedia files uses the built-in Flash Player of
6839Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player
6840supports the efficient H.264 codec for video compression.
6841
6842The package is based on the RichMedia Annotation, an Adobe addition to the PDF
6843specification. It replaces the now obsolete @code{movie15} package.")
6844 (license license:lppl)))
288c8c97
PN
6845
6846(define-public texlive-latex-ocgx2
6847 (package
6848 (name "texlive-latex-ocgx2")
6849 (version (number->string %texlive-revision))
6850 (source (origin
6851 (method svn-fetch)
6852 (uri (svn-reference
6853 (url (string-append "svn://www.tug.org/texlive/tags/"
6854 %texlive-tag "/Master/texmf-dist/"
6855 "/tex/latex/ocgx2"))
6856 (revision %texlive-revision)))
6857 (file-name (string-append name "-" version "-checkout"))
6858 (sha256
6859 (base32
d4d9a1ec 6860 "0zp00jg058djx8xp0xqwas92y3j97clkyd8z6pqr890yqy06myqb"))))
288c8c97
PN
6861 (build-system trivial-build-system)
6862 (arguments
6863 `(#:modules ((guix build utils))
6864 #:builder
6865 (begin
6866 (use-modules (guix build utils))
6867 (let ((target (string-append (assoc-ref %outputs "out")
6868 "/share/texmf-dist/tex/latex/ogcx2")))
6869 (mkdir-p target)
6870 (copy-recursively (assoc-ref %build-inputs "source") target)
6871 #t))))
6872 (home-page "https://www.ctan.org/pkg/ocgx2")
6873 (synopsis "Provide OCG (Optional Content Groups) support within a PDF document")
6874 (description
6875 "This package provides OCG (Optional Content Groups) support within a PDF
6876document.
6877
6878It re-implements the functionality of the @code{ocg}, @code{ocgx}, and
6879@code{ocg-p} packages and adds support for all known engines and back-ends
6880including:
6881
6882@itemize
6883@item LaTeX → dvips → @code{ps2pdf}/Distiller
6884@item (Xe)LaTeX(x) → @code{dvipdfmx}
6885@item pdfLaTeX and LuaLaTeX .
6886@end itemize
6887
6888It also ensures compatibility with the @code{media9} and @code{animate} packages.")
6889 (license license:lppl)))
b718793e
PN
6890
6891(define-public texlive-latex-ms
6892 (package
6893 (name "texlive-latex-ms")
6894 (version (number->string %texlive-revision))
6895 (source (origin
6896 (method svn-fetch)
6897 (uri (texlive-ref "latex" "ms"))
6898 (file-name (string-append name "-" version "-checkout"))
6899 (sha256
6900 (base32
6901 "0m4wx3yjb5al1qsv995z8fii8xxy96mcfihbnlx43lpgayiwz35s"))))
6902 (build-system texlive-build-system)
6903 (arguments
6904 '(#:tex-directory "latex/ms"
6905 #:tex-format "latex"))
6906 (home-page "https://ctan.org/pkg/ms")
6907 (synopsis "Various LATEX packages by Martin Schröder")
6908 (description
6909 "A bundle of LATEX packages by Martin Schröder; the collection comprises:
6910
6911@itemize
6912@item @command{count1to}, make use of fixed TEX counters;
6913@item @command{everysel}, set commands to execute every time a font is selected;
6914@item @command{everyshi}, set commands to execute whenever a page is shipped out;
6915@item @command{multitoc}, typeset the table of contents in multiple columns;
6916@item @command{prelim2e}, mark typeset pages as preliminary; and
6917@item @command{ragged2e}, typeset ragged text and allow hyphenation.
6918@end itemize\n")
6919 (license license:lppl1.3c+)))
707babdd
PN
6920
6921(define-public texlive-latex-needspace
6922 (package
6923 (name "texlive-latex-needspace")
6924 (version (number->string %texlive-revision))
6925 (source (origin
6926 (method svn-fetch)
6927 (uri (texlive-ref "latex" "needspace"))
6928 (file-name (string-append name "-" version "-checkout"))
6929 (sha256
6930 (base32
6931 "0kw80f5jh4gdpa2ka815abza3gr5z8b929w0745vrlc59pl0017y"))))
6932 (build-system texlive-build-system)
6933 (arguments
6934 '(#:tex-directory "latex/needspace"
6935 #:tex-format "latex"))
6936 (inputs
6937 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6938 (home-page "https://www.ctan.org/pkg/needspace")
6939 (synopsis "Insert pagebreak if not enough space")
6940 (description
6941 "Provides commands to disable pagebreaking within a given vertical
6942space. If there is not enough space between the command and the bottom of the
6943page, a new page will be started.")
6944 (license license:lppl)))
0e73c11b 6945
73635e3f
RW
6946(define-public texlive-latex-changepage
6947 (package
6948 (name "texlive-latex-changepage")
6949 (version (number->string %texlive-revision))
6950 (source
6951 (origin
6952 (method svn-fetch)
6953 (uri (texlive-ref "latex" "changepage"))
6954 (sha256
6955 (base32
6956 "1rpw8xg5p4jsyh236jma9dz3l29wjx4062f154b3wak5yjcxyxyb"))))
6957 (build-system texlive-build-system)
6958 (arguments
6959 '(#:tex-directory "latex/changepage"
6960 #:tex-format "latex"))
6961 (inputs
6962 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6963 (home-page "https://www.ctan.org/pkg/changepage")
6964 (synopsis "Margin adjustment and detection of odd/even pages")
6965 (description
6966 "The package provides commands to change the page layout in the middle of
6967a document, and to robustly check for typesetting on odd or even pages.
6968Instructions for use are at the end of the file. The package is an extraction
6969of code from the @code{memoir} class, whose user interface it shares.")
6970 (license license:lppl1.3+)))
6971
0e73c11b
PN
6972(define-public texlive-latex-eukdate
6973 (package
6974 (name "texlive-latex-eukdate")
6975 (version (number->string %texlive-revision))
6976 (source
6977 (origin
6978 (method svn-fetch)
6979 (uri (svn-reference
6980 (url (string-append "svn://www.tug.org/texlive/tags/"
6981 %texlive-tag "/Master/texmf-dist/"
6982 "/tex/latex/eukdate"))
6983 (revision %texlive-revision)))
6984 (file-name (string-append name "-" version "-checkout"))
6985 (sha256
6986 (base32
6987 "18xan116l8w47v560bkw6nbhkrml7g04xrlzk3jrpc7qsyf3n5fz"))))
6988 (build-system trivial-build-system)
6989 (arguments
6990 `(#:modules ((guix build utils))
6991 #:builder
6992 (begin
6993 (use-modules (guix build utils))
6994 (let ((target (string-append (assoc-ref %outputs "out")
6995 "/share/texmf-dist/tex/latex/eukdate")))
6996 (mkdir-p target)
6997 (copy-recursively (assoc-ref %build-inputs "source") target)
6998 #t))))
6999 (home-page "https://www.ctan.org/pkg/eukdate")
7000 (synopsis "UK format dates, with weekday")
7001 (description
7002 "The package is used to change the format of @code{\\today}’s date,
7003including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which
7004is preferred in many parts of the world, as distinct from that which is used in
7005@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'.")
7006 (license license:lppl)))
910d67fb
PN
7007
7008(define-public texlive-generic-ulem
7009 (package
7010 (name "texlive-generic-ulem")
7011 (version (number->string %texlive-revision))
7012 (source
7013 (origin
7014 (method svn-fetch)
7015 (uri (svn-reference
7016 (url (string-append "svn://www.tug.org/texlive/tags/"
7017 %texlive-tag "/Master/texmf-dist/"
7018 "/tex/generic/ulem"))
7019 (revision %texlive-revision)))
7020 (file-name (string-append name "-" version "-checkout"))
7021 (sha256
7022 (base32
7023 "1rzdniqq9zk39w8ch8ylx3ywh2mj87s4ivchrsk2b8nx06jyn797"))))
7024 (build-system trivial-build-system)
7025 (arguments
7026 `(#:modules ((guix build utils))
7027 #:builder
7028 (begin
7029 (use-modules (guix build utils))
7030 (let ((target (string-append (assoc-ref %outputs "out")
7031 "/share/texmf-dist/tex/generic/ulem")))
7032 (mkdir-p target)
7033 (copy-recursively (assoc-ref %build-inputs "source") target)
7034 #t))))
7035 (home-page "https://www.ctan.org/pkg/ulem")
7036 (synopsis "Underline text in TeX")
7037 (description
7038 "The package provides an @code{\\ul} (underline) command which will break
7039over line ends; this technique may be used to replace @code{\\em} (both in that
7040form and as the @code{\\emph} command), so as to make output look as if it comes
7041from a typewriter. The package also offers double and wavy underlining, and
7042striking out (line through words) and crossing out (/// over words).")
7043 (license license:lppl1.3c+)))
17ef5f1f
PN
7044
7045(define-public texlive-latex-pgf
7046 (package
7047 (name "texlive-latex-pgf")
7048 (version (number->string %texlive-revision))
7049 (source
7050 (origin
7051 (method svn-fetch)
7052 (uri (svn-reference
7053 (url (string-append "svn://www.tug.org/texlive/tags/"
7054 %texlive-tag "/Master/texmf-dist/"
7055 "/tex/latex/pgf"))
7056 (revision %texlive-revision)))
7057 (file-name (string-append name "-" version "-checkout"))
7058 (sha256
7059 (base32
7060 "1dq8p10pz8wn0vx412m7d7d5gj1syxly3yqdqvf7lv2xl8zndn5h"))))
7061 (build-system trivial-build-system)
7062 (native-inputs
7063 `(("texlive-latex-pgf-generic"
7064 ,(origin
7065 (method svn-fetch)
7066 (uri (svn-reference
7067 (url (string-append "svn://www.tug.org/texlive/tags/"
7068 %texlive-tag "/Master/texmf-dist/"
7069 "/tex/generic/pgf"))
7070 (revision %texlive-revision)))
7071 (file-name (string-append "texlive-latex-pgf-generic" version "-checkout"))
7072 (sha256
7073 (base32
7074 "0xkxw26sjzr5npjpzpr28yygwdbhzpdd0hsk80gjpidhcxmz393i"))))))
0fc71e4b
RW
7075 (propagated-inputs
7076 `(("texlive-latex-xcolor" ,texlive-latex-xcolor)))
17ef5f1f
PN
7077 (arguments
7078 `(#:modules ((guix build utils))
7079 #:builder
7080 (begin
7081 (use-modules (guix build utils))
7082 (let ((target-generic (string-append (assoc-ref %outputs "out")
7083 "/share/texmf-dist/tex/generic/pgf"))
7084 (target-latex (string-append (assoc-ref %outputs "out")
7085 "/share/texmf-dist/tex/latex/pgf")))
7086 (mkdir-p target-generic)
7087 (mkdir-p target-latex)
7088 (copy-recursively (assoc-ref %build-inputs "texlive-latex-pgf-generic") target-generic)
7089 (copy-recursively (assoc-ref %build-inputs "source") target-latex)
7090 #t))))
7091 (home-page "https://www.ctan.org/pkg/tikz")
7092 (synopsis "Create PostScript and PDF graphics in TeX")
7093 (description
7094 "PGF is a macro package for creating graphics. It is platform- and
7095format-independent and works together with the most important TeX backend
7096drivers, including pdfTeX and dvips. It comes with a user-friendly syntax layer
7097called TikZ.
7098
7099Its usage is similar to pstricks and the standard picture environment. PGF
7100works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. Unlike pstricks, it can
7101produce either PostScript or PDF output.")
7102 (license license:lppl1.3c+)))
e7b2937d
PN
7103
7104(define-public texlive-latex-koma-script
7105 (package
7106 (name "texlive-latex-koma-script")
7107 (version (number->string %texlive-revision))
7108 (source (origin
7109 (method svn-fetch)
7110 (uri (svn-reference
7111 (url (string-append "svn://www.tug.org/texlive/tags/"
7112 %texlive-tag "/Master/texmf-dist/"
7113 "/tex/latex/koma-script"))
7114 (revision %texlive-revision)))
7115 (file-name (string-append name "-" version "-checkout"))
7116 (sha256
7117 (base32
d4d9a1ec 7118 "0nqwf0sr4mf3v9gqa6apv6ml2xhcdwax0vgyf12a672g7rpdyvgm"))))
e7b2937d
PN
7119 (build-system trivial-build-system)
7120 (arguments
7121 `(#:modules ((guix build utils)
7122 (ice-9 match))
7123 #:builder
7124 (begin
7125 (use-modules (guix build utils)
7126 (ice-9 match))
7127 (let ((root (string-append (assoc-ref %outputs "out")
7128 "/share/texmf-dist/"))
7129 (pkgs '(("source" . "tex/latex/koma-script"))))
7130 (for-each (match-lambda
7131 ((pkg . dir)
7132 (let ((target (string-append root dir)))
7133 (mkdir-p target)
7134 (copy-recursively (assoc-ref %build-inputs pkg)
7135 target))))
7136 pkgs)
7137 #t))))
7138 (home-page "https://www.ctan.org/pkg/koma-script")
7139 (synopsis "Bundle of versatile classes and packages")
7140 (description
7141 "The KOMA-Script bundle provides replacements for the article, report, and
7142book classes with emphasis on typography and versatility. There is also a
7143letter class.
7144
7145The bundle also offers:
7146
7147@itemize
7148@item a package for calculating type areas in the way laid down by the
7149typographer Jan Tschichold,
7150@item packages for easily changing and defining page styles,
7151@item a package scrdate for getting not only the current date but also the name
7152of the day, and
7153@item a package scrtime for getting the current time.
7154@end itemize
7155
7156All these packages may be used not only with KOMA-Script classes but also with
7157the standard classes.
7158
7159Since every package has its own version number, the version number quoted only
7160refers to the version of scrbook, scrreprt, scrartcl, scrlttr2 and
7161typearea (which are the main parts of the bundle).")
7162 (license license:lppl1.3+)))
893fbf12
RW
7163
7164(define-public texlive-generic-listofitems
7165 (package
7166 (name "texlive-generic-listofitems")
7167 (version (number->string %texlive-revision))
7168 (source (origin
7169 (method svn-fetch)
7170 (uri (svn-reference
7171 (url (string-append "svn://www.tug.org/texlive/tags/"
7172 %texlive-tag "/Master/texmf-dist/"
7173 "/tex/generic/listofitems"))
7174 (revision %texlive-revision)))
7175 (file-name (string-append name "-" version "-checkout"))
7176 (sha256
7177 (base32
d4d9a1ec 7178 "0hs28fc0v2l92ad9las9b8xcckyrdrwmyhcx1yzmbr6s7s6nvsx8"))))
893fbf12
RW
7179 (build-system trivial-build-system)
7180 (arguments
7181 `(#:modules ((guix build utils))
7182 #:builder
7183 (begin
7184 (use-modules (guix build utils))
7185 (let ((target (string-append (assoc-ref %outputs "out")
7186 "/share/texmf-dist/tex/generic/listofitems")))
7187 (mkdir-p target)
7188 (copy-recursively (assoc-ref %build-inputs "source") target)
7189 #t))))
7190 (home-page "https://www.ctan.org/pkg/listofitems")
88868575 7191 (synopsis "Grab items in lists using user-specified separation character")
893fbf12
RW
7192 (description
7193 "This package allows one to capture all the items of a list, for which
7194the parsing character has been selected by the user, and to access any of
7195these items with a simple syntax.")
7196 (license license:lppl1.3c+)))
1d0669f4
RW
7197
7198(define-public texlive-latex-readarray
7199 (package
7200 (name "texlive-latex-readarray")
7201 (version (number->string %texlive-revision))
7202 (source (origin
7203 (method svn-fetch)
7204 (uri (svn-reference
7205 (url (string-append "svn://www.tug.org/texlive/tags/"
7206 %texlive-tag "/Master/texmf-dist/"
7207 "/tex/latex/readarray"))
7208 (revision %texlive-revision)))
7209 (file-name (string-append name "-" version "-checkout"))
7210 (sha256
7211 (base32
7212 "0c53k180ivn1n7fz3ngvd2w1i5dw3kxml0n64vhki88xsylz7lxp"))))
7213 (build-system trivial-build-system)
7214 (arguments
7215 `(#:modules ((guix build utils))
7216 #:builder
7217 (begin
7218 (use-modules (guix build utils))
7219 (let ((target (string-append (assoc-ref %outputs "out")
7220 "/share/texmf-dist/tex/latex/readarray")))
7221 (mkdir-p target)
7222 (copy-recursively (assoc-ref %build-inputs "source") target)
7223 #t))))
7224 (propagated-inputs
7225 `(("texlive-generic-listofitems" ,texlive-generic-listofitems)))
7226 (home-page "https://www.ctan.org/pkg/readarray")
7227 (synopsis "Read, store and recall array-formatted data")
7228 (description
7229 "This package allows the user to input formatted data into elements of a
72302-D or 3-D array and to recall that data at will by individual cell number.
7231The data can be but need not be numerical in nature. It can be, for example,
7232formatted text.")
7233 (license license:lppl1.3)))
f50f343e
RW
7234
7235(define-public texlive-latex-verbatimbox
7236 (package
7237 (name "texlive-latex-verbatimbox")
7238 (version (number->string %texlive-revision))
7239 (source (origin
7240 (method svn-fetch)
7241 (uri (svn-reference
7242 (url (string-append "svn://www.tug.org/texlive/tags/"
7243 %texlive-tag "/Master/texmf-dist/"
7244 "/tex/latex/verbatimbox"))
7245 (revision %texlive-revision)))
7246 (file-name (string-append name "-" version "-checkout"))
7247 (sha256
7248 (base32
7249 "0qh1cgvfs463zsi2pjg490gj0mkjfdpfc381j10cbb5la304psna"))))
7250 (build-system trivial-build-system)
7251 (arguments
7252 `(#:modules ((guix build utils))
7253 #:builder
7254 (begin
7255 (use-modules (guix build utils))
7256 (let ((target (string-append (assoc-ref %outputs "out")
7257 "/share/texmf-dist/tex/latex/verbatimbox")))
7258 (mkdir-p target)
7259 (copy-recursively (assoc-ref %build-inputs "source") target)
7260 #t))))
7261 (propagated-inputs
7262 `(("texlive-latex-readarray" ,texlive-latex-readarray)))
7263 (home-page "https://www.ctan.org/pkg/verbatimbox")
7264 (synopsis "Deposit verbatim text in a box")
7265 (description
7266 "The package provides a @code{verbbox} environment to place its contents
7267into a globally available box, or into a box specified by the user. The
7268global box may then be used in a variety of situations (for example, providing
7269a replica of the @code{boxedverbatim} environment itself). A valuable use is
7270in places where the standard @code{verbatim} environment (which is based on a
7271@code{trivlist}) may not appear.")
7272 (license license:lppl1.3+)))
4348a059
RW
7273
7274(define-public texlive-latex-examplep
7275 (package
7276 (name "texlive-latex-examplep")
7277 (version (number->string %texlive-revision))
7278 (source (origin
7279 (method svn-fetch)
7280 (uri (svn-reference
7281 (url (string-append "svn://www.tug.org/texlive/tags/"
7282 %texlive-tag "/Master/texmf-dist/"
7283 "/tex/latex/examplep"))
7284 (revision %texlive-revision)))
7285 (file-name (string-append name "-" version "-checkout"))
7286 (sha256
7287 (base32
7288 "0fsvvmz68ij0zwfzrny6x13d92grxr4ap59lxgah4smbkccd6s27"))))
7289 (build-system trivial-build-system)
7290 (arguments
7291 `(#:modules ((guix build utils))
7292 #:builder
7293 (begin
7294 (use-modules (guix build utils))
7295 (let ((target (string-append (assoc-ref %outputs "out")
7296 "/share/texmf-dist/tex/latex/examplep")))
7297 (mkdir-p target)
7298 (copy-recursively (assoc-ref %build-inputs "source") target)
7299 #t))))
7300 (home-page "https://www.ctan.org/pkg/examplep")
7301 (synopsis "Verbatim phrases and listings in LaTeX")
7302 (description
7303 "Examplep provides sophisticated features for typesetting verbatim source
7304code listings, including the display of the source code and its compiled LaTeX
7305or METAPOST output side-by-side, with automatic width detection and enabled
7306page breaks (in the source), without the need for specifying the source twice.
7307Special care is taken that section, page and footnote numbers do not interfere
7308with the main document. For typesetting short verbatim phrases, a replacement
7309for the @code{\\verb} command is also provided in the package, which can be
7310used inside tables and moving arguments such as footnotes and section
7311titles.")
7312 ;; No version of the GPL is specified.
7313 (license license:gpl3+)))
547ab650
PN
7314
7315(define-public texlive-generic-xypic
7316 (package
7317 (name "texlive-generic-xypic")
7318 (version (number->string %texlive-revision))
7319 (source
7320 (origin
7321 (method svn-fetch)
7322 (uri (svn-reference
7323 (url (string-append "svn://www.tug.org/texlive/tags/"
7324 %texlive-tag "/Master/texmf-dist/"
7325 "/tex/generic/xypic"))
7326 (revision %texlive-revision)))
7327 (file-name (string-append name "-" version "-checkout"))
7328 (sha256
7329 (base32
7330 "1g5cyxwdfznq4lk9zl6fkjkapmhmwd2cm4m5aibxj20qgwnaggfz"))))
7331 (build-system trivial-build-system)
7332 (arguments
7333 `(#:modules ((guix build utils))
7334 #:builder
7335 (begin
7336 (use-modules (guix build utils))
7337 (let ((target (string-append (assoc-ref %outputs "out")
7338 "/share/texmf-dist/tex/generic/xypic")))
7339 (mkdir-p target)
7340 (copy-recursively (assoc-ref %build-inputs "source") target)
7341 #t))))
7342 (home-page "https://www.ctan.org/pkg/xypic")
7343 (synopsis "Flexible diagramming macros for TeX")
7344 (description
7345 "A package for typesetting a variety of graphs and diagrams with TeX.
7346Xy-pic works with most formats (including LaTeX, AMS-LaTeX, AMS-TeX, and plain
7347TeX).")
7348 (license license:gpl3+)))
1d9ce461
PN
7349
7350(define-public texlive-fonts-xypic
7351 (package
7352 (name "texlive-fonts-xypic")
7353 (version (number->string %texlive-revision))
7354 (source (origin
7355 (method svn-fetch)
7356 (uri (svn-reference
7357 (url (string-append "svn://www.tug.org/texlive/tags/"
7358 %texlive-tag "/Master/texmf-dist/"
7359 "/fonts/source/public/xypic"))
7360 (revision %texlive-revision)))
7361 (file-name (string-append name "-" version "-checkout"))
7362 (sha256
7363 (base32
7364 "0p20v1257kwsqnrk98cdhhiz2viv8l3ly4xay4by0an3j37m9xs3"))))
7365 (build-system trivial-build-system)
7366 (arguments
7367 `(#:modules ((guix build utils)
7368 (ice-9 match))
7369 #:builder
7370 (begin
7371 (use-modules (guix build utils)
7372 (ice-9 match))
7373 (let ((root (string-append (assoc-ref %outputs "out")
7374 "/share/texmf-dist/"))
7375 (pkgs '(("source" . "fonts/source/public/xypic")
7376 ("xypic-afm" . "fonts/afm/public/xypic")
7377 ("xypic-type1" . "fonts/type1/public/xypic")
7378 ("xypic-enc" . "fonts/enc/dvips/xypic"))))
7379 (for-each (match-lambda
7380 ((pkg . dir)
7381 (let ((target (string-append root dir)))
7382 (mkdir-p target)
7383 (copy-recursively (assoc-ref %build-inputs pkg)
7384 target))))
7385 pkgs)
7386 #t))))
7387 (native-inputs
7388 `(("xypic-afm"
7389 ,(origin
7390 (method svn-fetch)
7391 (uri (svn-reference
7392 (url (string-append "svn://www.tug.org/texlive/tags/"
7393 %texlive-tag "/Master/texmf-dist/"
7394 "/fonts/afm/public/xypic"))
7395 (revision %texlive-revision)))
7396 (file-name (string-append name "-afm-" version "-checkout"))
7397 (sha256
7398 (base32
7399 "149xdijxp8lw3s0qv2aqxxxyyn748z57dpr596rjvkqdffpnsddh"))))
7400 ("xypic-type1"
7401 ,(origin
7402 (method svn-fetch)
7403 (uri (svn-reference
7404 (url (string-append "svn://www.tug.org/texlive/tags/"
7405 %texlive-tag "/Master/texmf-dist/"
7406 "/fonts/type1/public/xypic"))
7407 (revision %texlive-revision)))
7408 (file-name (string-append name "-type1-" version "-checkout"))
7409 (sha256
7410 (base32
7411 "1bln89wib7g3hcv2jny3qi6jb73k9d2vbgx3wnnjwp3ryg0846if"))))
7412 ("xypic-enc"
7413 ,(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/enc/dvips/xypic"))
7419 (revision %texlive-revision)))
7420 (file-name (string-append name "-enc-" version "-checkout"))
7421 (sha256
7422 (base32
7423 "0yi8vms3203l3p5slnhrrlzzp0f0jw77fkcvcaicrz2vmw9z99x7"))))))
7424 (home-page "https://www.ctan.org/pkg/xypic")
7425 (synopsis "Fonts for XY-pic")
7426 (description "This package provides the XY-pic fonts.")
7427 (license license:gpl3+)))
31595689
PN
7428
7429(define-public texlive-bibtex
7430 (package
7431 (name "texlive-bibtex")
7432 (version (number->string %texlive-revision))
7433 (source
7434 (origin
7435 (method svn-fetch)
7436 (uri (svn-reference
7437 (url (string-append "svn://www.tug.org/texlive/tags/"
7438 %texlive-tag "/Master/texmf-dist/"
7439 "/bibtex"))
7440 (revision %texlive-revision)))
7441 (file-name (string-append name "-" version "-checkout"))
7442 (sha256
7443 (base32
d4d9a1ec 7444 "0hnbs0s1znbn32hfcsyijl39z81sdb00jf092a4blqz421qs2mbv"))))
31595689
PN
7445 (build-system trivial-build-system)
7446 (arguments
7447 `(#:modules ((guix build utils))
7448 #:builder
7449 (begin
7450 (use-modules (guix build utils))
7451 (let ((target (string-append (assoc-ref %outputs "out")
7452 "/share/texmf-dist/bibtex")))
7453 (mkdir-p target)
7454 (copy-recursively (assoc-ref %build-inputs "source") target)
7455 #t))))
7456 (home-page "https://www.ctan.org/pkg/bibtex")
7457 (synopsis "Process bibliographies for LaTeX")
7458 (description
7459 "BibTeX allows the user to store his citation data in generic form, while
7460printing citations in a document in the form specified by a BibTeX style, to
7461be specified in the document itself (one often needs a LaTeX citation-style
7462package, such as @command{natbib} as well).")
7463 (license license:knuth)))
744b883e
PN
7464
7465(define-public texlive-fonts-charter
7466 (package
7467 (name "texlive-fonts-charter")
7468 (version (number->string %texlive-revision))
7469 (source (origin
7470 (method svn-fetch)
7471 (uri (svn-reference
7472 (url (string-append "svn://www.tug.org/texlive/tags/"
7473 %texlive-tag "/Master/texmf-dist/"
7474 "/fonts/type1/bitstrea/charter"))
7475 (revision %texlive-revision)))
7476 (file-name (string-append name "-" version "-checkout"))
7477 (sha256
7478 (base32
7479 "0yvib45xxff3jm5270zij4q888pivbc18cqs7lz4pqfhn1am4wnv"))))
7480 (build-system trivial-build-system)
7481 (arguments
7482 `(#:modules ((guix build utils)
7483 (ice-9 match))
7484 #:builder
7485 (begin
7486 (use-modules (guix build utils)
7487 (ice-9 match))
7488 (let ((root (string-append (assoc-ref %outputs "out")
7489 "/share/texmf-dist/"))
7490 (pkgs '(("source" . "fonts/type1/bitstrea/charter")
7491 ("charter-afm" . "fonts/afm/bitstrea/charter")
7492 ("charter-tfm" . "fonts/tfm/bitstrea/charter"))))
7493 (for-each (match-lambda
7494 ((pkg . dir)
7495 (let ((target (string-append root dir)))
7496 (mkdir-p target)
7497 (copy-recursively (assoc-ref %build-inputs pkg)
7498 target))))
7499 pkgs)
7500 #t))))
7501 (native-inputs
7502 `(("charter-afm"
7503 ,(origin
7504 (method svn-fetch)
7505 (uri (svn-reference
7506 (url (string-append "svn://www.tug.org/texlive/tags/"
7507 %texlive-tag "/Master/texmf-dist/"
7508 "/fonts/afm/bitstrea/charter"))
7509 (revision %texlive-revision)))
7510 (file-name (string-append name "-afm-" version "-checkout"))
7511 (sha256
7512 (base32
7513 "02nbkqrlr3vypnzslmr7dxg1353mmc0rl4ynx0s6qbvf313fq76a"))))
7514 ("charter-tfm"
7515 ,(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 "/fonts/tfm/bitstrea/charter"))
7521 (revision %texlive-revision)))
7522 (file-name (string-append name "-tfm-" version "-checkout"))
7523 (sha256
7524 (base32
7525 "0j7ci9vprivbhac70aq0z7m23hqcpx1g0i3wp1k0h8ilhimj80xk"))))))
7526 (home-page "https://www.ctan.org/pkg/charter")
7527 (synopsis "Charter fonts for TeX")
7528 (description "A commercial text font donated for the common good. Support
7529for use with LaTeX is available in @code{freenfss}, part of
7530@command{psnfss}. ")
7531 (license (license:non-copyleft (string-append "http://mirrors.ctan.org/"
7532 "fonts/charter/readme.charter")))))
a5bfedb4
PN
7533
7534(define-public texlive-context-base
7535 (package
7536 (name "texlive-context-base")
7537 (version (number->string %texlive-revision))
7538 (source (origin
7539 (method svn-fetch)
7540 (uri (svn-reference
7541 (url (string-append "svn://www.tug.org/texlive/tags/"
7542 %texlive-tag "/Master/texmf-dist/"
7543 "/tex/context/base"))
7544 (revision %texlive-revision)))
7545 (file-name (string-append name "-" version "-checkout"))
7546 (sha256
7547 (base32
d4d9a1ec 7548 "0rlx4qqijms1n64gjx475kvip8l322fh7v17zkmwp1l1g0w3vlyz"))))
a5bfedb4
PN
7549 (build-system trivial-build-system)
7550 (arguments
7551 `(#:modules ((guix build utils))
7552 #:builder
7553 (begin
7554 (use-modules (guix build utils))
7555 (let ((target (string-append (assoc-ref %outputs "out")
7556 "/share/texmf-dist/tex/context/case")))
7557 (mkdir-p target)
7558 (copy-recursively (assoc-ref %build-inputs "source") target)
7559 #t))))
7560 (home-page "https://www.ctan.org/pkg/context")
7561 (synopsis "Full featured, parameter driven macro package for TeX")
7562 (description "A full featured, parameter driven macro package, which fully
7563supports advanced interactive documents. See the ConTeXt garden for a wealth
7564of support information.")
7565 (license license:gpl2+)))
63133706
RW
7566
7567(define-public texlive-latex-beamer
7568 (package
7569 (name "texlive-latex-beamer")
7570 (version (number->string %texlive-revision))
7571 (source (origin
7572 (method svn-fetch)
7573 (uri (svn-reference
7574 (url (string-append "svn://www.tug.org/texlive/tags/"
7575 %texlive-tag "/Master/texmf-dist/"
7576 "/tex/latex/beamer"))
7577 (revision %texlive-revision)))
7578 (file-name (string-append name "-" version "-checkout"))
7579 (sha256
7580 (base32
7581 "09y3qwbj0nckshvg9afgwcv9v3zdif1d7bnpzrggsa1fbr80mgk2"))))
7582 (build-system trivial-build-system)
7583 (outputs '("out" "doc"))
7584 (arguments
7585 `(#:modules ((guix build utils))
7586 #:builder
7587 (begin
7588 (use-modules (guix build utils))
7589 (let ((target (string-append (assoc-ref %outputs "out")
7590 "/share/texmf-dist/tex/latex/beamer"))
7591 (docs (string-append (assoc-ref %outputs "doc")
7592 "/share/texmf-dist/doc/latex/beamer/")))
7593 (mkdir-p target)
7594 (copy-recursively (assoc-ref %build-inputs "source") target)
7595
7596 (mkdir-p docs)
7597 (copy-recursively (assoc-ref %build-inputs "docs") docs)
7598 #t))))
7599 (propagated-inputs
7600 `(("texlive-latex-hyperref" ,texlive-latex-hyperref)
7601 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
7602 ("texlive-latex-etoolbox" ,texlive-latex-etoolbox)
7603 ("texlive-latex-pgf" ,texlive-latex-pgf)))
7604 (native-inputs
7605 `(("docs"
7606 ,(origin
7607 (method svn-fetch)
7608 (uri (svn-reference
7609 (url (string-append "svn://www.tug.org/texlive/tags/"
7610 %texlive-tag "/Master/texmf-dist/"
7611 "/doc/latex/beamer"))
7612 (revision %texlive-revision)))
7613 (file-name (string-append name "-" version "-checkout"))
7614 (sha256
7615 (base32
7616 "102b18b9nw9dicqqgjwx0srh1mav8vh9wdvwayn741niza9hac23"))))))
7617 (home-page "https://www.ctan.org/pkg/beamer")
7618 (synopsis "LaTeX class for producing presentations and slides")
7619 (description "The beamer LaTeX class can be used for producing slides.
7620The class works in both PostScript and direct PDF output modes, using the
7621@code{pgf} graphics system for visual effects. Content is created in the
7622@code{frame} environment, and each frame can be made up of a number of slides
7623using a simple notation for specifying material to appear on each slide within
7624a frame. Short versions of title, authors, institute can also be specified as
7625optional parameters. Whole frame graphics are supported by plain frames. The
7626class supports @code{figure} and @code{table} environments, transparency
7627effects, varying slide transitions and animations.")
7628 ;; Code is dual licensed under GPLv2+ or LPPL1.3c+; documentation is
7629 ;; dual-licensed under either FDLv1.3+ or LPPL1.3c+.
7630 (license (list license:lppl1.3c+ license:gpl2+ license:fdl1.3+))))
cafd4d38
RW
7631
7632(define-public texlive-latex-xmpincl
7633 (package
7634 (name "texlive-latex-xmpincl")
7635 (version (number->string %texlive-revision))
7636 (source
7637 (origin
7638 (method svn-fetch)
7639 (uri (texlive-ref "latex" "xmpincl"))
7640 (sha256
7641 (base32
7642 "0lq3dfb4fsw955gjwllnk7cg00ciq5mva64mlpbva6g2jz117734"))))
7643 (build-system texlive-build-system)
7644 (arguments '(#:tex-directory "latex/xmpincl"))
7645 (home-page "http://www.ctan.org/pkg/xmpincl")
7646 (synopsis "Include eXtensible Metadata Platform data in pdfLaTeX")
7647 (description
7648 "The XMP (eXtensible Metadata platform) is a framework to add metadata to
7649digital material to enhance the workflow in publication. The essence is that
7650the metadata is stored in an XML file, and this XML stream is then embedded in
7651the file to which it applies.")
7652 (license license:gpl3+)))
f87dcb4d
RW
7653
7654(define-public texlive-latex-pdfx
7655 (package
7656 (name "texlive-latex-pdfx")
7657 (version (number->string %texlive-revision))
7658 (source
7659 (origin
7660 (method svn-fetch)
7661 (uri (texlive-ref "latex" "pdfx"))
7662 (sha256
7663 (base32
7664 "0ikxg8yzq78hy5b9x13d4nah46d0yvmwlqmdri06pygbx116dcac"))))
7665 (build-system texlive-build-system)
7666 (arguments
7667 '(#:tex-directory "latex/pdfx"
7668 #:phases
7669 (modify-phases %standard-phases
7670 (add-after 'unpack 'fix-encoding
7671 (lambda _
7672 (substitute* "pdfx.dtx"
7673 ((" .+umaczy") "umaczy"))
7674 #t))
7675 (add-before 'install 'install-tex-files
7676 (lambda* (#:key inputs outputs #:allow-other-keys)
7677 (let ((target (string-append (assoc-ref outputs "out")
7678 "/share/texmf-dist/tex/latex/pdfx")))
7679 (mkdir-p target)
7680 (copy-recursively (assoc-ref inputs "texlive-tex-pdfx") target)
7681 ;; Install the generated version in the "install" phase.
7682 (delete-file (string-append target "/pdfx.sty"))
7683 #t))))))
7684 (propagated-inputs
7685 `(("texlive-generic-pdftex" ,texlive-generic-pdftex)))
7686 (native-inputs
7687 `(("texlive-tex-pdfx"
7688 ,(origin
7689 (method svn-fetch)
7690 (uri (svn-reference
7691 (url (string-append "svn://www.tug.org/texlive/tags/"
7692 %texlive-tag "/Master/texmf-dist/"
7693 "/tex/latex/pdfx"))
7694 (revision %texlive-revision)))
7695 (file-name (string-append "texlive-tex-latex-pdfx-" version "-checkout"))
7696 (sha256
7697 (base32
7698 "14j1zsvqc59ims3sk34v6km8db6cimks28y5fcxcr5mi2ykvj4vf"))))))
7699 (home-page "https://www.ctan.org/pkg/pdfx")
7700 (synopsis "PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX")
7701 (description
7702 "This package helps LaTeX users to create PDF/X, PFD/A and other
7703standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX.")
7704 (license license:lppl1.2+)))