gnu: Add texlive-pstool.
[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
6090b6c4 3981(define-public texlive-pstool
5a1ee7d8 3982 (package
6090b6c4
RW
3983 (inherit (simple-texlive-package
3984 "texlive-pstool"
3985 (list "/doc/latex/pstool/"
3986 "/tex/latex/pstool/")
3987 (base32
3988 "12clzcw2cl7g2chr2phgmmiwxw4859cln1gbx1wgp8bl9iw590nc")
3989 #:trivial? #t))
5a1ee7d8 3990 (propagated-inputs
d4d9a1ec 3991 `(("texlive-latex-bigfoot" ,texlive-latex-bigfoot) ; for suffix
5a1ee7d8
RW
3992 ("texlive-latex-filemod" ,texlive-latex-filemod)
3993 ("texlive-latex-graphics" ,texlive-latex-graphics)
3994 ("texlive-latex-ifplatform" ,texlive-latex-ifplatform)
d4d9a1ec 3995 ("texlive-latex-l3kernel" ,texlive-latex-l3kernel) ; for expl3
5a1ee7d8
RW
3996 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
3997 ("texlive-latex-psfrag" ,texlive-latex-psfrag)
d4d9a1ec
RW
3998 ("texlive-latex-tools" ,texlive-latex-tools) ; for shellesc
3999 ("texlive-latex-trimspaces" ,texlive-latex-trimspaces)
4000 ("texlive-latex-xkeyval" ,texlive-latex-xkeyval)))
b8d8806b 4001 (home-page "https://www.ctan.org/pkg/pstool")
d4d9a1ec 4002 (synopsis "Process PostScript graphics within pdfLaTeX documents")
5a1ee7d8
RW
4003 (description
4004 "This is a package for processing PostScript graphics with @code{psfrag}
4005labels within pdfLaTeX documents. Every graphic is compiled individually,
4006drastically speeding up compilation time when only a single figure needs
4007re-processing.")
4008 (license license:lppl)))
4009
6090b6c4
RW
4010(define-public texlive-latex-pstool
4011 (deprecated-package "texlive-latex-pstool" texlive-pstool))
4012
171160d5
RW
4013(define-public texlive-latex-seminar
4014 (package
4015 (name "texlive-latex-seminar")
4016 (version (number->string %texlive-revision))
4017 (source (origin
4018 (method svn-fetch)
4019 (uri (svn-reference
4020 (url (string-append "svn://www.tug.org/texlive/tags/"
4021 %texlive-tag "/Master/texmf-dist/"
4022 "/tex/latex/seminar"))
4023 (revision %texlive-revision)))
a74ac06b 4024 (file-name (string-append name "-" version "-checkout"))
171160d5
RW
4025 (sha256
4026 (base32
4027 "0y4i651b75y6006n03x8n86bsqvjsailvvz9bhzy51dzsznqidq0"))))
1d4c2dab
RW
4028 (build-system trivial-build-system)
4029 (arguments
4030 `(#:modules ((guix build utils))
4031 #:builder
4032 (begin
4033 (use-modules (guix build utils))
4034 (let ((target (string-append (assoc-ref %outputs "out")
4035 "/share/texmf-dist/tex/latex/seminar")))
4036 (mkdir-p target)
4037 (copy-recursively (assoc-ref %build-inputs "source") target)
4038 #t))))
b8d8806b 4039 (home-page "https://www.ctan.org/pkg/seminar")
171160d5
RW
4040 (synopsis "Make overhead slides")
4041 ;; TODO: This package may need fancybox and xcomment at runtime.
4042 (description
4043 "This package provides a class that produces overhead
4044slides (transparencies), with many facilities. Seminar is not nowadays
4045reckoned a good basis for a presentation — users are advised to use more
4046recent classes such as powerdot or beamer, both of which are tuned to
404721st-century presentation styles.")
4048 (license license:lppl1.2+)))
4049
f3540dbd
RW
4050(define-public texlive-latex-trimspaces
4051 (package
4052 (name "texlive-latex-trimspaces")
4053 (version (number->string %texlive-revision))
4054 (source (origin
4055 (method svn-fetch)
4056 (uri (texlive-ref "latex" "trimspaces"))
70a71d19 4057 (file-name (string-append name "-" version "-checkout"))
f3540dbd
RW
4058 (sha256
4059 (base32
4060 "0da00lb32am4g63mn96625wg48p3pj3spx79lajrk17d549apwqa"))))
4061 (build-system texlive-build-system)
4062 (arguments
4063 '(#:tex-directory "latex/trimspaces"
4064 #:tex-format "latex"
4065 #:phases
4066 (modify-phases %standard-phases
4067 (add-after 'unpack 'fix-bug
4068 (lambda _
4069 ;; The "ins" file refers to the wrong source file.
4070 (substitute* "trimspaces.ins"
4071 (("pstool.tex") "trimspaces.tex"))
4072 #t)))))
4073 (inputs
4074 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
b8d8806b 4075 (home-page "https://www.ctan.org/pkg/trimspaces")
f3540dbd
RW
4076 (synopsis "Trim spaces around an argument or within a macro")
4077 (description
4078 "This very short package allows you to expandably remove spaces around a
4079token list (commands are provided to remove spaces before, spaces after, or
4080both); or to remove surrounding spaces within a macro definition, or to define
4081space-stripped macros.")
4082 (license license:lppl)))
4083
7709d4d8
RW
4084(define-public texlive-latex-capt-of
4085 (package
4086 (name "texlive-latex-capt-of")
4087 (version (number->string %texlive-revision))
4088 (source (origin
4089 (method svn-fetch)
4090 (uri (svn-reference
4091 (url (string-append "svn://www.tug.org/texlive/tags/"
4092 %texlive-tag "/Master/texmf-dist/"
4093 "/tex/latex/capt-of"))
4094 (revision %texlive-revision)))
4095 (file-name (string-append name "-" version "-checkout"))
4096 (sha256
4097 (base32
4098 "1y2s50f6lz0jx2748lj3iy56hrpcczgnbzmvphxv7aqndyyamd4x"))))
4099 (build-system trivial-build-system)
4100 (arguments
4101 `(#:modules ((guix build utils))
4102 #:builder
4103 (begin
4104 (use-modules (guix build utils))
4105 (let ((target (string-append (assoc-ref %outputs "out")
4106 "/share/texmf-dist/tex/latex/capt-of")))
4107 (mkdir-p target)
4108 (copy-recursively (assoc-ref %build-inputs "source") target)
4109 #t))))
b8d8806b 4110 (home-page "https://www.ctan.org/pkg/capt-of")
7709d4d8
RW
4111 (synopsis "Captions on more than floats")
4112 (description
4113 "This package defines a command @code{\\captionof} for putting a caption
4114to something that's not a float.")
4115 (license license:lppl)))
4116
49b2e86a
RW
4117(define-public texlive-latex-doi
4118 (package
4119 (name "texlive-latex-doi")
4120 (version (number->string %texlive-revision))
4121 (source (origin
4122 (method svn-fetch)
4123 (uri (svn-reference
4124 (url (string-append "svn://www.tug.org/texlive/tags/"
4125 %texlive-tag "/Master/texmf-dist/"
4126 "/tex/latex/doi"))
4127 (revision %texlive-revision)))
4128 (file-name (string-append name "-" version "-checkout"))
4129 (sha256
4130 (base32
4131 "0378rdmrgr2lzbfi4qqy4dfpj5im20diyd8z8b9m4mlg05r7wgnb"))))
4132 (build-system trivial-build-system)
4133 (arguments
4134 `(#:modules ((guix build utils))
4135 #:builder
4136 (begin
4137 (use-modules (guix build utils))
4138 (let ((target (string-append (assoc-ref %outputs "out")
4139 "/share/texmf-dist/tex/latex/doi")))
4140 (mkdir-p target)
4141 (copy-recursively (assoc-ref %build-inputs "source") target)
4142 #t))))
4143 (home-page "https://www.ctan.org/pkg/doi")
4144 (synopsis "Create correct hyperlinks for DOI numbers")
4145 (description
4146 "You can hyperlink DOI numbers to doi.org. However, some publishers have
4147elected to use nasty characters in their DOI numbering scheme (@code{<},
4148@code{>}, @code{_} and @code{;} have all been spotted). This will either
4149upset LaTeX, or your PDF reader. This package contains a single user-level
4150command @code{\\doi{}}, which takes a DOI number, and creates a correct
4151hyperlink to the target of the DOI.")
4152 ;; Any version of the LPPL.
4153 (license license:lppl1.3+)))
4154
a8ac7c0b
RW
4155(define-public texlive-latex-etoolbox
4156 (package
4157 (name "texlive-latex-etoolbox")
4158 (version (number->string %texlive-revision))
4159 (source (origin
4160 (method svn-fetch)
4161 (uri (svn-reference
4162 (url (string-append "svn://www.tug.org/texlive/tags/"
4163 %texlive-tag "/Master/texmf-dist/"
4164 "/tex/latex/etoolbox"))
4165 (revision %texlive-revision)))
4166 (file-name (string-append name "-" version "-checkout"))
4167 (sha256
4168 (base32
d4d9a1ec 4169 "1agmq6bf8wzcd77n20ng8bl4kh69cg5f6sjniii7bcw4llhd3nc8"))))
a8ac7c0b
RW
4170 (build-system trivial-build-system)
4171 (arguments
4172 `(#:modules ((guix build utils))
4173 #:builder
4174 (begin
4175 (use-modules (guix build utils))
4176 (let ((target (string-append (assoc-ref %outputs "out")
4177 "/share/texmf-dist/tex/latex/etoolbox")))
4178 (mkdir-p target)
4179 (copy-recursively (assoc-ref %build-inputs "source") target)
4180 #t))))
b8d8806b 4181 (home-page "https://www.ctan.org/pkg/etoolbox")
a8ac7c0b
RW
4182 (synopsis "e-TeX tools for LaTeX")
4183 (description
4184 "This package is a toolbox of programming facilities geared primarily
4185towards LaTeX class and package authors. It provides LaTeX frontends to some
4186of the new primitives provided by e-TeX as well as some generic tools which
4187are not strictly related to e-TeX but match the profile of this package. The
4188package provides functions that seem to offer alternative ways of implementing
4189some LaTeX kernel commands; nevertheless, the package will not modify any part
4190of the LaTeX kernel.")
4191 (license license:lppl1.3+)))
4192
17dce7e5
RW
4193(define-public texlive-latex-fncychap
4194 (package
4195 (name "texlive-latex-fncychap")
4196 (version (number->string %texlive-revision))
4197 (source (origin
4198 (method svn-fetch)
4199 (uri (svn-reference
4200 (url (string-append "svn://www.tug.org/texlive/tags/"
4201 %texlive-tag "/Master/texmf-dist/"
4202 "/tex/latex/fncychap"))
4203 (revision %texlive-revision)))
4204 (file-name (string-append name "-" version "-checkout"))
4205 (sha256
4206 (base32
4207 "0fdk84dbicfjfprkz6vk15x36mvlhaw9isjmgkc56jp2khwjswwq"))))
4208 (build-system trivial-build-system)
4209 (arguments
4210 `(#:modules ((guix build utils))
4211 #:builder
4212 (begin
4213 (use-modules (guix build utils))
4214 (let ((target (string-append (assoc-ref %outputs "out")
4215 "/share/texmf-dist/tex/latex/fncychap")))
4216 (mkdir-p target)
4217 (copy-recursively (assoc-ref %build-inputs "source") target)
4218 #t))))
b8d8806b 4219 (home-page "https://www.ctan.org/pkg/fncychap")
17dce7e5
RW
4220 (synopsis "Seven predefined chapter heading styles")
4221 (description
4222 "This package provides seven predefined chapter heading styles. Each
4223style can be modified using a set of simple commands. Optionally one can
4224modify the formatting routines in order to create additional chapter
4225headings.")
4226 (license license:lppl1.3+)))
4227
ef1e2ef0
RW
4228(define-public texlive-latex-framed
4229 (package
4230 (name "texlive-latex-framed")
4231 (version (number->string %texlive-revision))
4232 (source (origin
4233 (method svn-fetch)
4234 (uri (svn-reference
4235 (url (string-append "svn://www.tug.org/texlive/tags/"
4236 %texlive-tag "/Master/texmf-dist/"
4237 "/tex/latex/framed"))
4238 (revision %texlive-revision)))
4239 (file-name (string-append name "-" version "-checkout"))
4240 (sha256
4241 (base32
4242 "14a4ydqsvp3vcfavl21jrv0ybiqypaaqzg2q2cs3rzkandg7w98x"))))
4243 (build-system trivial-build-system)
4244 (arguments
4245 `(#:modules ((guix build utils))
4246 #:builder
4247 (begin
4248 (use-modules (guix build utils))
4249 (let ((target (string-append (assoc-ref %outputs "out")
4250 "/share/texmf-dist/tex/latex/framed")))
4251 (mkdir-p target)
4252 (copy-recursively (assoc-ref %build-inputs "source") target)
4253 #t))))
b8d8806b 4254 (home-page "https://www.ctan.org/pkg/framed")
ef1e2ef0
RW
4255 (synopsis "Framed or shaded regions that can break across pages")
4256 (description
4257 "The package creates three environments: @code{framed}, which puts an
4258ordinary frame box around the region, @code{shaded}, which shades the region,
4259and @code{leftbar}, which places a line at the left side. The environments
4260allow a break at their start (the @code{\\FrameCommand} enables creation of a
4261title that is “attached” to the environment); breaks are also allowed in the
4262course of the framed/shaded matter. There is also a command
4263@code{\\MakeFramed} to make your own framed-style environments.")
4264 ;; The header states: "These macros may be freely transmitted, reproduced,
4265 ;; or modified for any purpose provided that this notice is left intact."
4266 (license (license:fsf-free "file://framed.sty"))))
4267
588b5e96
RW
4268(define-public texlive-latex-g-brief
4269 (package
4270 (name "texlive-latex-g-brief")
4271 (version (number->string %texlive-revision))
4272 (source (origin
4273 (method svn-fetch)
4274 (uri (texlive-ref "latex" "g-brief"))
4275 (file-name (string-append name "-" version "-checkout"))
4276 (sha256
4277 (base32
4278 "0sikazkg0dpkcpzlbqw8qzxr81paf2f443vsrh14jnw7s4gswvc5"))))
4279 (build-system texlive-build-system)
4280 (arguments
4281 '(#:tex-directory "latex/g-brief"
4282 #:phases
4283 (modify-phases %standard-phases
4284 (add-after 'unpack 'remove-generated-file
4285 (lambda _
4286 (delete-file "g-brief.drv")
4287 #t)))))
b8d8806b 4288 (home-page "https://www.ctan.org/pkg/g-brief")
588b5e96
RW
4289 (synopsis "Letter document class")
4290 (description
4291 "This package is designed for formatting formless letters in German; it
4292can also be used for English (by those who can read the documentation). There
4293are LaTeX 2.09 @code{documentstyle} and LaTeX 2e class files for both an
4294\"old\" and a \"new\" version of g-brief.")
4295 (license license:lppl)))
4296
9b4d5c09
RW
4297(define-public texlive-latex-galois
4298 (package
4299 (name "texlive-latex-galois")
4300 (version (number->string %texlive-revision))
4301 (source (origin
4302 (method svn-fetch)
4303 (uri (texlive-ref "latex" "galois"))
4304 (file-name (string-append name "-" version "-checkout"))
4305 (sha256
4306 (base32
4307 "0d4l0msk8j5pi95xnmm9wygv1vbpkwkv5amx9l0km86cs79jpp1h"))))
4308 (build-system texlive-build-system)
4309 (arguments '(#:tex-directory "latex/galois"))
b8d8806b 4310 (home-page "https://www.ctan.org/pkg/galois")
9b4d5c09
RW
4311 (synopsis "Typeset Galois connections")
4312 (description
4313 "The package deals with connections in two-dimensional style, optionally
4314in colour.")
4315 (license license:lppl)))
4316
5f691e2e
RW
4317(define-public texlive-latex-gcite
4318 (package
4319 (name "texlive-latex-gcite")
4320 (version (number->string %texlive-revision))
4321 (source (origin
4322 (method svn-fetch)
4323 (uri (texlive-ref "latex" "gcite"))
4324 (file-name (string-append name "-" version "-checkout"))
4325 (sha256
4326 (base32
4327 "03g9by54yrypn599y98r1xh7qw0bbbmpzq0bfwpj6j5q5rkl1mfa"))))
4328 (build-system texlive-build-system)
4329 (arguments '(#:tex-directory "latex/gcite"))
b8d8806b 4330 (home-page "https://www.ctan.org/pkg/gcite")
5f691e2e
RW
4331 (synopsis "Citations in a reader-friendly style")
4332 (description
4333 "The package allows citations in the German style, which is considered by
4334many to be particularly reader-friendly. The citation provides a small amount
4335of bibliographic information in a footnote on the page where each citation is
4336made. It combines a desire to eliminate unnecessary page-turning with the
4337look-up efficiency afforded by numeric citations. The package makes use of
4338BibLaTeX, and is considered experimental.")
4339 (license license:lppl1.3+)))
4340
f47d1a52
RW
4341(define-public texlive-latex-geometry
4342 (package
4343 (name "texlive-latex-geometry")
4344 (version (number->string %texlive-revision))
4345 (source (origin
4346 (method svn-fetch)
4347 (uri (texlive-ref "latex" "geometry"))
4348 (file-name (string-append name "-" version "-checkout"))
4349 (sha256
4350 (base32
d4d9a1ec 4351 "0yw6bjfgsli3s1dldsgb7mkr7lnk329cgdjbgs8z2xn59pmmdsn4"))))
f47d1a52
RW
4352 (build-system texlive-build-system)
4353 (arguments '(#:tex-directory "latex/geometry"))
00a7af0e
RW
4354 (propagated-inputs
4355 `(("texlive-latex-oberdiek" ,texlive-latex-oberdiek))) ;for ifpdf
b8d8806b 4356 (home-page "https://www.ctan.org/pkg/geometry")
f47d1a52
RW
4357 (synopsis "Flexible and complete interface to document dimensions")
4358 (description
4359 "This package provides an easy and flexible user interface to customize
4360page layout, implementing auto-centering and auto-balancing mechanisms so that
4361the users have only to give the least description for the page layout. The
4362package knows about all the standard paper sizes, so that the user need not
4363know what the nominal \"real\" dimensions of the paper are, just its standard
4364name (such as a4, letter, etc.). An important feature is the package's
4365ability to communicate the paper size it's set up to the output.")
4366 (license license:lppl)))
4367
d48091be
RW
4368(define-public texlive-latex-mdwtools
4369 (package
4370 (name "texlive-latex-mdwtools")
4371 (version (number->string %texlive-revision))
4372 (source (origin
4373 (method svn-fetch)
4374 (uri (texlive-ref "latex" "mdwtools"))
4375 (file-name (string-append name "-" version "-checkout"))
4376 (sha256
4377 (base32
4378 "0caxs74hla28hc67csf5i5ahadx97w8vxh3mdmsprxbpd1mr7ssg"))))
4379 (build-system texlive-build-system)
4380 (arguments '(#:tex-directory "latex/mdwtools"))
b8d8806b 4381 (home-page "https://www.ctan.org/pkg/mdwtools")
d48091be
RW
4382 (synopsis "Miscellaneous tools by Mark Wooding")
4383 (description
4384 "This collection of tools includes: @code{atsupport} for short commands
fb5dfa86
RW
4385starting with @code{@@}, macros to sanitize the OT1 encoding of the
4386@code{cmtt} fonts; a @code{doafter} command; improved @code{footnote} support;
d48091be
RW
4387@code{mathenv} for various alignment in maths; list handling; @code{mdwmath}
4388which adds some minor changes to LaTeX maths; a rewrite of LaTeX's tabular and
4389array environments; verbatim handling; and syntax diagrams.")
4390 (license license:gpl3+)))
4391
80bf1f21
RW
4392(define-public texlive-latex-polyglossia
4393 (package
4394 (name "texlive-latex-polyglossia")
4395 (version (number->string %texlive-revision))
4396 (source (origin
4397 (method svn-fetch)
4398 (uri (texlive-ref "latex" "polyglossia"))
4399 (file-name (string-append name "-" version "-checkout"))
4400 (sha256
4401 (base32
d4d9a1ec 4402 "03ma58z3ypsbp7zgkzb1ylpn2ygr27cxzkf042ns0rif4g8s491f"))))
80bf1f21
RW
4403 (build-system texlive-build-system)
4404 (arguments '(#:tex-directory "latex/polyglossia"))
b8d8806b 4405 (home-page "https://www.ctan.org/pkg/polyglossia")
80bf1f21
RW
4406 (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
4407 (description
4408 "This package provides a complete Babel replacement for users of LuaLaTeX
4409and XeLaTeX; it relies on the @code{fontspec} package, version 2.0 at least.")
4410 (license license:lppl1.3+)))
4411
84f8035a
RW
4412(define-public texlive-latex-supertabular
4413 (package
4414 (name "texlive-latex-supertabular")
4415 (version (number->string %texlive-revision))
4416 (source (origin
4417 (method svn-fetch)
4418 (uri (texlive-ref "latex" "supertabular"))
4419 (file-name (string-append name "-" version "-checkout"))
4420 (sha256
4421 (base32
4422 "14b2bc7cqz4ckxxycim9sw6jkrr1pahivm1rdbpz5k6hl967w1s3"))))
4423 (build-system texlive-build-system)
4424 (arguments '(#:tex-directory "latex/supertabular"))
b8d8806b 4425 (home-page "https://www.ctan.org/pkg/supertabular")
84f8035a
RW
4426 (synopsis "Multi-page tables package")
4427 (description
4428 "This package was a predecessor of @code{longtable}; the newer
4429package (designed on quite different principles) is easier to use and more
4430flexible, in many cases, but supertabular retains its usefulness in a few
4431situations where longtable has problems.")
4432 (license license:lppl1.3+)))
4433
a0aa6b59
RW
4434(define-public texlive-tex-texinfo
4435 (package
4436 (name "texlive-tex-texinfo")
4437 (version (number->string %texlive-revision))
4438 (source (origin
4439 (method svn-fetch)
4440 (uri (svn-reference
4441 (url (string-append "svn://www.tug.org/texlive/tags/"
4442 %texlive-tag "/Master/texmf-dist/"
4443 "/tex/texinfo"))
4444 (revision %texlive-revision)))
88ae1921 4445 (file-name (string-append name "-" version "-checkout"))
a0aa6b59
RW
4446 (sha256
4447 (base32
d4d9a1ec 4448 "06cf821y1j7jdg93pb41ayigrfwgn0y49d7w1025zlijjxi6bvjp"))))
a0aa6b59
RW
4449 (build-system trivial-build-system)
4450 (arguments
4451 `(#:modules ((guix build utils))
4452 #:builder
4453 (begin
4454 (use-modules (guix build utils))
4455 (let ((target (string-append (assoc-ref %outputs "out")
4456 "/share/texmf-dist/tex/texinfo")))
4457 (mkdir-p target)
4458 (copy-recursively (assoc-ref %build-inputs "source") target)
4459 #t))))
b8d8806b 4460 (home-page "https://www.ctan.org/pkg/texinfo")
a0aa6b59
RW
4461 (synopsis "TeX macros to handle Texinfo files")
4462 (description
4463 "Texinfo is the preferred format for documentation in the GNU project;
4464the format may be used to produce online or printed output from a single
4465source. The Texinfo macros may be used to produce printable output using TeX;
4466other programs in the distribution offer online interactive use (with
4467hypertext linkages in some cases).")
4468 (license license:gpl3+)))
4469
0de81b09
RW
4470(define-public texlive-latex-upquote
4471 (package
4472 (name "texlive-latex-upquote")
4473 (version (number->string %texlive-revision))
4474 (source (origin
4475 (method svn-fetch)
4476 (uri (texlive-ref "latex" "upquote"))
4477 (file-name (string-append name "-" version "-checkout"))
4478 (sha256
4479 (base32
4480 "0d1050i973wnxigy0xpky5l7vn4ff7ldhkjpdqsw5s653gagwixp"))))
4481 (build-system texlive-build-system)
4482 (arguments '(#:tex-directory "latex/upquote"))
b8d8806b 4483 (home-page "https://www.ctan.org/pkg/upquote")
0de81b09
RW
4484 (synopsis "Show \"realistic\" quotes in verbatim")
4485 (description
4486 "Typewriter-style fonts are best for program listings, but Computer
4487Modern Typewriter prints @code{`} and @code{'} as bent opening and closing
4488single quotes. Other fonts, and most programming languages, print @code{`} as
4489a grave accent and @code{'} upright; @code{'} is used both to open and to
4490close quoted strings. The package switches the typewriter font to Computer
4491Modern Typewriter in OT1 encoding, and modifies the behaviour of
4492@code{verbatim}, @code{verbatim*}, @code{\\verb}, and @code{\\verb*} to print
4493in the expected way. It does this regardless of other fonts or encodings in
4494use, so long as the package is loaded after the other fonts were. The package
4495does not affect @code{\\tt}, @code{\\texttt}, etc.")
4496 (license license:lppl1.2+)))
4497
bda61541
RW
4498(define-public texlive-latex-anysize
4499 (package
4500 (name "texlive-latex-anysize")
4501 (version (number->string %texlive-revision))
4502 (source (origin
4503 (method svn-fetch)
4504 (uri (svn-reference
4505 (url (string-append "svn://www.tug.org/texlive/tags/"
4506 %texlive-tag "/Master/texmf-dist/"
4507 "/tex/latex/anysize"))
4508 (revision %texlive-revision)))
de4eb4d1 4509 (file-name (string-append name "-" version "-checkout"))
bda61541
RW
4510 (sha256
4511 (base32
4512 "19khwqjlvznc955sijhww3c4zbb0053rvzwv9nz738qknq7y18vb"))))
4513 (build-system trivial-build-system)
4514 (arguments
4515 `(#:modules ((guix build utils))
4516 #:builder
4517 (begin
4518 (use-modules (guix build utils))
4519 (let ((target (string-append (assoc-ref %outputs "out")
4520 "/share/texmf-dist/tex/latex/anysize")))
4521 (mkdir-p target)
4522 (copy-recursively (assoc-ref %build-inputs "source") target)
4523 #t))))
b8d8806b 4524 (home-page "https://www.ctan.org/pkg/anysize")
bda61541
RW
4525 (synopsis "Simple package to set up document margins")
4526 (description
4527 "This is a simple package to set up document margins. This package is
4528considered obsolete; alternatives are the @code{typearea} package from the
4529@code{koma-script} bundle, or the @code{geometry} package.")
4530 (license license:public-domain)))
4531
1d3be84e
RW
4532(define-public texlive-latex-appendix
4533 (package
4534 (name "texlive-latex-appendix")
4535 (version (number->string %texlive-revision))
4536 (source (origin
4537 (method svn-fetch)
4538 (uri (texlive-ref "latex" "appendix"))
72d5adf4 4539 (file-name (string-append name "-" version "-checkout"))
1d3be84e
RW
4540 (sha256
4541 (base32
4542 "0rxfpr8vq3brwx5rc7qn91ixlp9zva4zrms8a579fqa1g5yva7vg"))))
4543 (build-system texlive-build-system)
4544 (arguments '(#:tex-directory "latex/appendix"))
b8d8806b 4545 (home-page "https://www.ctan.org/pkg/appendix")
1d3be84e
RW
4546 (synopsis "Extra control of appendices")
4547 (description
4548 "The appendix package provides various ways of formatting the titles of
4549appendices. Also (sub)appendices environments are provided that can be used,
4550for example, for per chapter/section appendices. An @code{appendices}
4551environment is provided which can be used instead of the @code{\\appendix}
4552command.")
4553 (license license:lppl)))
4554
b92ac281
RW
4555(define-public texlive-latex-changebar
4556 (package
4557 (name "texlive-latex-changebar")
4558 (version (number->string %texlive-revision))
4559 (source (origin
4560 (method svn-fetch)
4561 (uri (texlive-ref "latex" "changebar"))
af8aa105 4562 (file-name (string-append name "-" version "-checkout"))
b92ac281
RW
4563 (sha256
4564 (base32
d4d9a1ec 4565 "05x15ilynqrl448h8l6qiraygamdldlngz89a2bw7kg74fym14ch"))))
b92ac281
RW
4566 (build-system texlive-build-system)
4567 (arguments '(#:tex-directory "latex/changebar"))
b8d8806b 4568 (home-page "https://www.ctan.org/pkg/changebar")
b92ac281
RW
4569 (synopsis "Generate changebars in LaTeX documents")
4570 (description
4571 "Identify areas of text to be marked with changebars with the
4572@code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The
36a4366d
EF
4573package uses @code{drivers} to place the bars; the available drivers can work
4574with @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI
b92ac281
RW
4575drivers, and VTeX and pdfTeX.")
4576 (license license:lppl)))
4577
fedd77c1
RW
4578(define-public texlive-latex-cmap
4579 (package
4580 (name "texlive-latex-cmap")
4581 (version (number->string %texlive-revision))
4582 (source (origin
4583 (method svn-fetch)
4584 (uri (svn-reference
4585 (url (string-append "svn://www.tug.org/texlive/tags/"
4586 %texlive-tag "/Master/texmf-dist/"
4587 "/tex/latex/cmap"))
4588 (revision %texlive-revision)))
4589 (file-name (string-append name "-" version "-checkout"))
4590 (sha256
4591 (base32
4592 "1s1rv6zgw105w2j6ffhnk914qrix87y1ndzri1q72g2kbr91zlbg"))))
4593 (build-system trivial-build-system)
4594 (arguments
4595 `(#:modules ((guix build utils))
4596 #:builder
4597 (begin
4598 (use-modules (guix build utils))
4599 (let ((target (string-append (assoc-ref %outputs "out")
4600 "/share/texmf-dist/tex/latex/cmap")))
4601 (mkdir-p target)
4602 (copy-recursively (assoc-ref %build-inputs "source") target)
4603 #t))))
4604 (home-page "https://www.tug.org/svn/texlive/tags/texlive-2017.1/\
4605Master/texmf-dist/tex/latex/cmap/")
4606 (synopsis "CMap support for PDF files")
4607 (description
4608 "This package embeds CMap tables into PDF files to make search and
4609copy-and-paste functions work properly.")
4610 (license license:lppl)))
4611
e003a5f0
RW
4612(define-public texlive-latex-colortbl
4613 (package
4614 (name "texlive-latex-colortbl")
4615 (version (number->string %texlive-revision))
4616 (source (origin
4617 (method svn-fetch)
4618 (uri (texlive-ref "latex" "colortbl"))
4439c1de 4619 (file-name (string-append name "-" version "-checkout"))
e003a5f0
RW
4620 (sha256
4621 (base32
4622 "190pmq8la2rq07xry8bn8z8yywzxv6fqyqaj7yjfj5rgw6x0mas8"))))
4623 (build-system texlive-build-system)
4624 (arguments '(#:tex-directory "latex/colortbl"))
b8d8806b 4625 (home-page "https://www.ctan.org/pkg/colortbl")
e003a5f0
RW
4626 (synopsis "Add colour to LaTeX tables")
4627 (description
4628 "This package allows rows, columns, and even individual cells in LaTeX
4629tables to be coloured.")
4630 (license license:lppl)))
4631
36ce05ff
RW
4632(define-public texlive-latex-fancybox
4633 (package
4634 (name "texlive-latex-fancybox")
4635 (version (number->string %texlive-revision))
4636 (source (origin
4637 (method svn-fetch)
4638 (uri (svn-reference
4639 (url (string-append "svn://www.tug.org/texlive/tags/"
4640 %texlive-tag "/Master/texmf-dist/"
4641 "/tex/latex/fancybox"))
4642 (revision %texlive-revision)))
62ee46b9 4643 (file-name (string-append name "-" version "-checkout"))
36ce05ff
RW
4644 (sha256
4645 (base32
4646 "0smmnaad2q8qwicay1frri990lv65l0k8cwzsvdsyp3jk8kp042w"))))
4647 (build-system trivial-build-system)
4648 (arguments
4649 `(#:modules ((guix build utils))
4650 #:builder
4651 (begin
4652 (use-modules (guix build utils))
4653 (let ((target (string-append (assoc-ref %outputs "out")
4654 "/share/texmf-dist/tex/latex/fancybox")))
4655 (mkdir-p target)
4656 (copy-recursively (assoc-ref %build-inputs "source") target)
4657 #t))))
b8d8806b 4658 (home-page "https://www.ctan.org/pkg/fancybox")
36ce05ff
RW
4659 (synopsis "Variants of \\fbox and other games with boxes")
4660 (description
4661 "This package provides variants of @code{\\fbox}: @code{\\shadowbox},
4662@code{\\doublebox}, @code{\\ovalbox}, @code{\\Ovalbox}, with helpful tools for
4663using box macros and flexible verbatim macros. You can box mathematics,
4664floats, center, flushleft, and flushright, lists, and pages.")
4665 (license license:lppl1.2+)))
4666
20282111
RW
4667(define-public texlive-latex-fancyhdr
4668 (package
4669 (name "texlive-latex-fancyhdr")
4670 (version (number->string %texlive-revision))
4671 (source (origin
4672 (method svn-fetch)
4673 (uri (svn-reference
4674 (url (string-append "svn://www.tug.org/texlive/tags/"
4675 %texlive-tag "/Master/texmf-dist/"
4676 "/tex/latex/fancyhdr"))
4677 (revision %texlive-revision)))
e89d5cf4 4678 (file-name (string-append name "-" version "-checkout"))
20282111
RW
4679 (sha256
4680 (base32
d4d9a1ec 4681 "1xsnzx7vgdfh9zh2m7bjz6bgdpxsgb1kyc19p50vhs34x5nbgsnr"))))
20282111
RW
4682 (build-system trivial-build-system)
4683 (arguments
4684 `(#:modules ((guix build utils))
4685 #:builder
4686 (begin
4687 (use-modules (guix build utils))
4688 (let ((target (string-append (assoc-ref %outputs "out")
4689 "/share/texmf-dist/tex/latex/fancyhdr")))
4690 (mkdir-p target)
4691 (copy-recursively (assoc-ref %build-inputs "source") target)
4692 #t))))
b8d8806b 4693 (home-page "https://www.ctan.org/pkg/fancyhdr")
20282111
RW
4694 (synopsis "Extensive control of page headers and footers in LaTeX2e")
4695 (description
4696 "The package provides extensive facilities, both for constructing headers
4697and footers, and for controlling their use (for example, at times when LaTeX
4698would automatically change the heading style in use).")
4699 (license license:lppl)))
4700
df2b9bb4
RW
4701(define-public texlive-latex-float
4702 (package
4703 (name "texlive-latex-float")
4704 (version (number->string %texlive-revision))
4705 (source (origin
4706 (method svn-fetch)
4707 (uri (texlive-ref "latex" "float"))
4fd0a591 4708 (file-name (string-append name "-" version "-checkout"))
df2b9bb4
RW
4709 (sha256
4710 (base32
4711 "0nbl7wylkv22fcdv4p8byhhj575fli6jnqjpkhrkbv8dzwah84nq"))))
4712 (build-system texlive-build-system)
4713 (arguments '(#:tex-directory "latex/float"))
b8d8806b 4714 (home-page "https://www.ctan.org/pkg/float")
df2b9bb4
RW
4715 (synopsis "Improved interface for floating objects")
4716 (description
4717 "This package improves the interface for defining floating objects such
4718as figures and tables. It introduces the boxed float, the ruled float and the
4719plaintop float. You can define your own floats and improve the behaviour of
4720the old ones. The package also provides the @code{H} float modifier option of
4721the obsolete @code{here} package. You can select this as automatic default
4722with @code{\\floatplacement{figure}{H}}.")
4723 (license license:lppl)))
4724
3921bc7c
RW
4725(define-public texlive-latex-footmisc
4726 (package
4727 (name "texlive-latex-footmisc")
4728 (version (number->string %texlive-revision))
4729 (source (origin
4730 (method svn-fetch)
4731 (uri (texlive-ref "latex" "footmisc"))
dae1d9e4 4732 (file-name (string-append name "-" version "-checkout"))
3921bc7c
RW
4733 (sha256
4734 (base32
4735 "03x61wwql8nh6zrqiiiq3rb0x7m3pn48c606zapy19y21fybwdxs"))))
4736 (build-system texlive-build-system)
4737 (arguments '(#:tex-directory "latex/footmisc"))
b8d8806b 4738 (home-page "https://www.ctan.org/pkg/footmisc")
3921bc7c
RW
4739 (synopsis "Range of footnote options")
4740 (description
4741 "This is a collection of ways to change the typesetting of footnotes.
4742The package provides means of changing the layout of the footnotes themselves,
4743a way to number footnotes per page, to make footnotes disappear in a
4744\"moving\" argument, and to deal with multiple references to footnotes from
4745the same place. The package also has a range of techniques for labelling
4746footnotes with symbols rather than numbers.")
4747 (license license:lppl1.3+)))
4748
b2bc1daf
RW
4749(define-public texlive-latex-listings
4750 (package
4751 (name "texlive-latex-listings")
4752 (version (number->string %texlive-revision))
4753 (source (origin
4754 (method svn-fetch)
4755 (uri (texlive-ref "latex" "listings"))
aeb135e3 4756 (file-name (string-append name "-" version "-checkout"))
b2bc1daf
RW
4757 (sha256
4758 (base32
4759 "1nsn9wp3wl12b36c0sqrim33lf33cr5wky0h4ncnw8lvqgm7h8wf"))))
4760 (build-system texlive-build-system)
4761 (arguments
4762 '(#:tex-directory "latex/listings"
4763 #:build-targets '("listings.ins")))
b8d8806b 4764 (home-page "https://www.ctan.org/pkg/listings")
b2bc1daf
RW
4765 (synopsis "Typeset source code listings using LaTeX")
4766 (description
4767 "The package enables the user to typeset programs (programming code)
4768within LaTeX; the source code is read directly by TeX---no front-end processor
4769is needed. Keywords, comments and strings can be typeset using different
4770styles. Support for @code{hyperref} is provided.")
4771 (license license:lppl1.3+)))
4772
02fd07b3
RW
4773(define-public texlive-latex-jknapltx
4774 (package
4775 (name "texlive-latex-jknapltx")
4776 (version (number->string %texlive-revision))
4777 (source (origin
4778 (method svn-fetch)
4779 (uri (svn-reference
4780 (url (string-append "svn://www.tug.org/texlive/tags/"
4781 %texlive-tag "/Master/texmf-dist/"
4782 "/tex/latex/jknapltx"))
4783 (revision %texlive-revision)))
aa499191 4784 (file-name (string-append name "-" version "-checkout"))
02fd07b3
RW
4785 (sha256
4786 (base32
4787 "0m034x72f2g07icr50gacyxfb9g1lz2rmqh4kqr1qjb421x2kds9"))))
4788 (build-system trivial-build-system)
4789 (arguments
4790 `(#:modules ((guix build utils))
4791 #:builder
4792 (begin
4793 (use-modules (guix build utils))
4794 (let ((target (string-append (assoc-ref %outputs "out")
4795 "/share/texmf-dist/tex/latex/jknapltx")))
4796 (mkdir-p target)
4797 (copy-recursively (assoc-ref %build-inputs "source") target)
4798 #t))))
b8d8806b 4799 (home-page "https://www.ctan.org/pkg/jknappen")
02fd07b3
RW
4800 (synopsis "Miscellaneous packages by Joerg Knappen")
4801 (description
4802 "This package provides miscellaneous macros by Joerg Knappen, including:
4803represent counters in greek; Maxwell's non-commutative division;
4804@code{latin1jk}, @code{latin2jk} and @code{latin3jk}, which are
4805@code{inputenc} definition files that allow verbatim input in the respective
4806ISO Latin codes; blackboard bold fonts in maths; use of RSFS fonts in maths;
4807extra alignments for @code{\\parboxes}; swap Roman and Sans fonts;
4808transliterate semitic languages; patches to make (La)TeX formulae embeddable
4809in SGML; use maths minus in text as appropriate; simple Young tableaux.")
4810 (license license:gpl2)))
4811
83c830d1
RW
4812(define-public texlive-fonts-ec
4813 (package
4814 (name "texlive-fonts-ec")
4815 (version (number->string %texlive-revision))
4816 (source (origin
4817 (method svn-fetch)
4818 (uri (svn-reference
4819 (url (string-append "svn://www.tug.org/texlive/tags/"
4820 %texlive-tag "/Master/texmf-dist/"
4821 "/fonts/source/jknappen/ec/"))
4822 (revision %texlive-revision)))
ca816eb3 4823 (file-name (string-append name "-" version "-checkout"))
83c830d1
RW
4824 (sha256
4825 (base32
4826 "12av65fbz9xiashm09c9m1fj1mijxls5xspd7652ry1n5s0nixy4"))))
4827 (build-system gnu-build-system)
4828 (arguments
4829 `(#:modules ((guix build gnu-build-system)
4830 (guix build utils)
4831 (srfi srfi-1)
4832 (srfi srfi-26))
4833 #:tests? #f ; no tests
4834 #:phases
4835 (modify-phases %standard-phases
4836 (delete 'configure)
4837 (replace 'build
4838 (lambda* (#:key inputs #:allow-other-keys)
4839 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
4840 ;; Tell mf where to find mf.base
4841 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
4842 ;; Tell mf where to look for source files
4843 (setenv "MFINPUTS"
4844 (string-append (getcwd) ":"
4845 mf "/share/texmf-dist/metafont/base:"
4846 (assoc-ref inputs "texlive-fonts-cm")
4847 "/share/texmf-dist/fonts/source/public/cm")))
4848 (mkdir "build")
c4fc86e4
MW
4849 (for-each (lambda (font)
4850 (format #t "building font ~a\n" font)
4851 (invoke "mf" "-progname=mf"
4852 "-output-directory=build"
4853 (string-append "\\"
4854 "mode:=ljfour; "
4855 "mag:=1; "
4856 "batchmode; "
4857 "input " (basename font ".mf"))))
4858 (find-files "." "[0-9]+\\.mf$"))
4859 #t))
83c830d1
RW
4860 (replace 'install
4861 (lambda* (#:key outputs #:allow-other-keys)
4862 (let* ((out (assoc-ref outputs "out"))
4863 (tfm (string-append
4864 out "/share/texmf-dist/fonts/tfm/jknappen/ec"))
4865 (mf (string-append
4866 out "/share/texmf-dist/fonts/source/jknappen/ec")))
4867 (for-each (cut install-file <> tfm)
4868 (find-files "build" "\\.*"))
4869 (for-each (cut install-file <> mf)
4870 (find-files "." "\\.mf"))
4871 #t))))))
4872 (native-inputs
4873 `(("texlive-bin" ,texlive-bin)
4874 ("texlive-metafont-base" ,texlive-metafont-base)
4875 ("texlive-fonts-cm" ,texlive-fonts-cm)))
b8d8806b 4876 (home-page "https://www.ctan.org/pkg/ec")
83c830d1
RW
4877 (synopsis "Computer modern fonts in T1 and TS1 encodings")
4878 (description
4879 "The EC fonts are European Computer Modern Fonts, supporting the complete
4880LaTeX T1 encoding defined at the 1990 TUG conference hold at Cork/Ireland.
4881These fonts are intended to be stable with no changes being made to the tfm
4882files. The set also contains a Text Companion Symbol font, called @code{tc},
4883featuring many useful characters needed in text typesetting, for example
4884oldstyle digits, currency symbols (including the newly created Euro symbol),
4885the permille sign, copyright, trade mark and servicemark as well as a copyleft
4886sign, and many others. Recent releases of LaTeX2e support the EC fonts. The
4887EC fonts supersede the preliminary version released as the DC fonts. The
4888fonts are available in (traced) Adobe Type 1 format, as part of the
4889@code{cm-super} bundle. The other Computer Modern-style T1-encoded Type 1
4890set, Latin Modern, is not actually a direct development of the EC set, and
4891differs from the EC in a number of particulars.")
4892 (license (license:fsf-free "https://www.tug.org/svn/texlive/tags/\
4893texlive-2017.1/Master/texmf-dist/doc/fonts/ec/copyrite.txt"))))
4894
5e9bf5a2
RW
4895(define-public texlive-fonts-adobe-times
4896 (package
4897 (name "texlive-fonts-adobe-times")
4898 (version (number->string %texlive-revision))
4899 (source (origin
4900 (method svn-fetch)
4901 (uri (svn-reference
4902 (url (string-append "svn://www.tug.org/texlive/tags/"
4903 %texlive-tag "/Master/texmf-dist/"
4904 "/fonts/type1/urw/times/"))
4905 (revision %texlive-revision)))
4906 (file-name (string-append name "-" version "-checkout"))
4907 (sha256
4908 (base32
4909 "15vzyr7favkv1mj00qxr03s89kw78nd066fh69by93272g8p5sgd"))))
4910 (build-system trivial-build-system)
4911 (arguments
4912 `(#:modules ((guix build utils)
4913 (ice-9 match))
4914 #:builder
4915 (begin
4916 (use-modules (guix build utils)
4917 (ice-9 match))
4918 (let ((root (string-append (assoc-ref %outputs "out")
4919 "/share/texmf-dist/"))
4920 (pkgs '(("source" . "fonts/type1/urw/times")
4921
4922 ("times-afm" . "fonts/afm/adobe/times")
4923 ("times-tfm" . "fonts/tfm/adobe/times")
4924 ("times-vf" . "fonts/vf/adobe/times")
4925
4926 ("urw-afm" . "fonts/afm/urw/times")
4927 ("urw35vf-tfm" . "fonts/tfm/urw35vf/times")
4928 ("urw35vf-vf" . "fonts/vf/urw35vf/times")
4929
4930 ("times-tex" . "tex/latex/times")
4931 ("dvips" . "dvips/times")
4932 ("fonts-map" . "fonts/map/dvips/times"))))
4933 (for-each (match-lambda
4934 ((pkg . dir)
4935 (let ((target (string-append root dir)))
4936 (mkdir-p target)
4937 (copy-recursively (assoc-ref %build-inputs pkg)
4938 target))))
4939 pkgs)
4940 #t))))
4941 (native-inputs
4942 `(("times-afm"
4943 ,(origin
4944 (method svn-fetch)
4945 (uri (svn-reference
4946 (url (string-append "svn://www.tug.org/texlive/tags/"
4947 %texlive-tag "/Master/texmf-dist/"
4948 "/fonts/afm/adobe/times"))
4949 (revision %texlive-revision)))
4950 (file-name (string-append name "-afm-" version "-checkout"))
4951 (sha256
4952 (base32
4953 "1k7h6vihfc6ri2lq9ggnq2g4zq3qcgq1vd0hr486g9cqrdpys6cy"))))
4954 ("times-tfm"
4955 ,(origin
4956 (method svn-fetch)
4957 (uri (svn-reference
4958 (url (string-append "svn://www.tug.org/texlive/tags/"
4959 %texlive-tag "/Master/texmf-dist/"
4960 "/fonts/tfm/adobe/times"))
4961 (revision %texlive-revision)))
4962 (file-name (string-append name "-tfm-" version "-checkout"))
4963 (sha256
4964 (base32
4965 "1hbgkjnf5xyganbznwpwszvr3iyk4bzb0ys4hd8ybawp60paadrr"))))
4966 ("times-vf"
4967 ,(origin
4968 (method svn-fetch)
4969 (uri (svn-reference
4970 (url (string-append "svn://www.tug.org/texlive/tags/"
4971 %texlive-tag "/Master/texmf-dist/"
4972 "/fonts/vf/adobe/times"))
4973 (revision %texlive-revision)))
4974 (file-name (string-append name "-vf-" version "-checkout"))
4975 (sha256
4976 (base32
4977 "18rfspnwdw9r81dy18lb4w96d09b6c4g7y80azwylalkhwdf2lfp"))))
4978 ("urw-afm"
4979 ,(origin
4980 (method svn-fetch)
4981 (uri (svn-reference
4982 (url (string-append "svn://www.tug.org/texlive/tags/"
4983 %texlive-tag "/Master/texmf-dist/"
4984 "/fonts/afm/urw/times"))
4985 (revision %texlive-revision)))
4986 (file-name (string-append name "-urw-afm-" version "-checkout"))
4987 (sha256
4988 (base32
4989 "0g0xpsyn6634g0b4rpd420v7i4gkz3zr12vcy2b8csbcscjvwri5"))))
4990 ("urw35vf-tfm"
4991 ,(origin
4992 (method svn-fetch)
4993 (uri (svn-reference
4994 (url (string-append "svn://www.tug.org/texlive/tags/"
4995 %texlive-tag "/Master/texmf-dist/"
4996 "/fonts/tfm/urw35vf/times"))
4997 (revision %texlive-revision)))
4998 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
4999 (sha256
5000 (base32
5001 "0a4idlvpaqd0ypqgy1xw0rpx8q23bvssg8xq757zzn3zikj0w7pr"))))
5002 ("urw35vf-vf"
5003 ,(origin
5004 (method svn-fetch)
5005 (uri (svn-reference
5006 (url (string-append "svn://www.tug.org/texlive/tags/"
5007 %texlive-tag "/Master/texmf-dist/"
5008 "/fonts/vf/urw35vf/times"))
5009 (revision %texlive-revision)))
5010 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
5011 (sha256
5012 (base32
5013 "05mppwxd4c5x0yw50gca726f0ylc1rk8jf0jjkrriixq6rnw03di"))))
5014 ("times-tex"
5015 ,(origin
5016 (method svn-fetch)
5017 (uri (svn-reference
5018 (url (string-append "svn://www.tug.org/texlive/tags/"
5019 %texlive-tag "/Master/texmf-dist/"
5020 "/tex/latex/times"))
5021 (revision %texlive-revision)))
5022 (file-name (string-append name "-tex-" version "-checkout"))
5023 (sha256
5024 (base32
5025 "1gmd0x7c3vkvfzgmrsp4866rcdbyimfk3bjr91zaadc41r1i8xrp"))))
5026 ("dvips"
5027 ,(origin
5028 (method svn-fetch)
5029 (uri (svn-reference
5030 (url (string-append "svn://www.tug.org/texlive/tags/"
5031 %texlive-tag "/Master/texmf-dist/"
5032 "/dvips/times/"))
5033 (revision %texlive-revision)))
5034 (file-name (string-append name "-dvips-" version "-checkout"))
5035 (sha256
5036 (base32
5037 "1fvqpgqi7bp2q76nf5kmlhsdijxw65arqfy3ax3djwih3yg12mp0"))))
5038 ("fonts-map"
5039 ,(origin
5040 (method svn-fetch)
5041 (uri (svn-reference
5042 (url (string-append "svn://www.tug.org/texlive/tags/"
5043 %texlive-tag "/Master/texmf-dist/"
5044 "/fonts/map/dvips/times/"))
5045 (revision %texlive-revision)))
5046 (file-name (string-append name "-fonts-map-" version "-checkout"))
5047 (sha256
5048 (base32
5049 "12f00gzs2zgllkm59qdhw2xxj7lvg3p256232f1l275z3pldfqqi"))))))
5050 (home-page "https://ctan.org/pkg/urw-base35")
5051 (synopsis "URW Base 35 font pack for LaTeX")
5052 (description
5053 "This package provides a drop-in replacements for the Times font from
5054Adobe's basic set.")
5055 ;; No license version specified.
5056 (license license:gpl3+)))
5057
f2d1f060
RW
5058(define-public texlive-fonts-adobe-palatino
5059 (package
5060 (name "texlive-fonts-adobe-palatino")
5061 (version (number->string %texlive-revision))
5062 (source (origin
5063 (method svn-fetch)
5064 (uri (svn-reference
5065 (url (string-append "svn://www.tug.org/texlive/tags/"
5066 %texlive-tag "/Master/texmf-dist/"
5067 "/fonts/type1/urw/palatino/"))
5068 (revision %texlive-revision)))
5069 (file-name (string-append name "-" version "-checkout"))
5070 (sha256
5071 (base32
5072 "18dw5260c6fy7acxaqwrg3hw04kg63ijq4lkn56q5pa2g6nyylrp"))))
5073 (build-system trivial-build-system)
5074 (arguments
5075 `(#:modules ((guix build utils)
5076 (ice-9 match))
5077 #:builder
5078 (begin
5079 (use-modules (guix build utils)
5080 (ice-9 match))
5081 (let ((root (string-append (assoc-ref %outputs "out")
5082 "/share/texmf-dist/"))
5083 (pkgs '(("source" . "fonts/type1/urw/palatino")
5084
5085 ("palatino-afm" . "fonts/afm/adobe/palatino")
5086 ("palatino-tfm" . "fonts/tfm/adobe/palatino")
5087 ("palatino-vf" . "fonts/vf/adobe/palatino")
5088
5089 ("urw-afm" . "fonts/afm/urw/palatino")
5090 ("urw35vf-tfm" . "fonts/tfm/urw35vf/palatino")
5091 ("urw35vf-vf" . "fonts/vf/urw35vf/palatino")
5092
5093 ("palatino-tex" . "tex/latex/palatino")
5094 ("dvips" . "dvips/palatino")
5095 ("fonts-map" . "fonts/map/dvips/palatino"))))
5096 (for-each (match-lambda
5097 ((pkg . dir)
5098 (let ((target (string-append root dir)))
5099 (mkdir-p target)
5100 (copy-recursively (assoc-ref %build-inputs pkg)
5101 target))))
5102 pkgs)
5103 #t))))
5104 (native-inputs
5105 `(("palatino-afm"
5106 ,(origin
5107 (method svn-fetch)
5108 (uri (svn-reference
5109 (url (string-append "svn://www.tug.org/texlive/tags/"
5110 %texlive-tag "/Master/texmf-dist/"
5111 "/fonts/afm/adobe/palatino"))
5112 (revision %texlive-revision)))
5113 (file-name (string-append name "-afm-" version "-checkout"))
5114 (sha256
5115 (base32
5116 "0pxizay730cx7rb9y5bqq9dn1zxx3arc33rmdsn7l29pc51flmmi"))))
5117 ("palatino-tfm"
5118 ,(origin
5119 (method svn-fetch)
5120 (uri (svn-reference
5121 (url (string-append "svn://www.tug.org/texlive/tags/"
5122 %texlive-tag "/Master/texmf-dist/"
5123 "/fonts/tfm/adobe/palatino"))
5124 (revision %texlive-revision)))
5125 (file-name (string-append name "-tfm-" version "-checkout"))
5126 (sha256
5127 (base32
5128 "1w1vm0sk9kpsy14yhyf1v1q3c6b97cgbba74g578bcwjlh810mg0"))))
5129 ("palatino-vf"
5130 ,(origin
5131 (method svn-fetch)
5132 (uri (svn-reference
5133 (url (string-append "svn://www.tug.org/texlive/tags/"
5134 %texlive-tag "/Master/texmf-dist/"
5135 "/fonts/vf/adobe/palatino"))
5136 (revision %texlive-revision)))
5137 (file-name (string-append name "-vf-" version "-checkout"))
5138 (sha256
5139 (base32
5140 "1maqfis8hpybcn9lmm8r2b1g56620lfpsncg0742c3kkjd6dh97h"))))
5141 ("urw-afm"
5142 ,(origin
5143 (method svn-fetch)
5144 (uri (svn-reference
5145 (url (string-append "svn://www.tug.org/texlive/tags/"
5146 %texlive-tag "/Master/texmf-dist/"
5147 "/fonts/afm/urw/palatino"))
5148 (revision %texlive-revision)))
5149 (file-name (string-append name "-urw-afm-" version "-checkout"))
5150 (sha256
5151 (base32
5152 "0gk0xwy1fs2si5kb1j3dzgm52c8sagv32gd9dmw88m7sgh5qkd87"))))
5153 ("urw35vf-tfm"
5154 ,(origin
5155 (method svn-fetch)
5156 (uri (svn-reference
5157 (url (string-append "svn://www.tug.org/texlive/tags/"
5158 %texlive-tag "/Master/texmf-dist/"
5159 "/fonts/tfm/urw35vf/palatino"))
5160 (revision %texlive-revision)))
5161 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5162 (sha256
5163 (base32
5164 "19aq3xwfg7vkf1qzjdxgcvcdqwpvpavq3l25y64xni72qx0kmppz"))))
5165 ("urw35vf-vf"
5166 ,(origin
5167 (method svn-fetch)
5168 (uri (svn-reference
5169 (url (string-append "svn://www.tug.org/texlive/tags/"
5170 %texlive-tag "/Master/texmf-dist/"
5171 "/fonts/vf/urw35vf/palatino"))
5172 (revision %texlive-revision)))
5173 (file-name (string-append name "-urw35vf-vf-" version "-checkout"))
5174 (sha256
5175 (base32
5176 "1lkn4p6zimrs0ah6mxsang4bicp8j7xzl016529a3f168an7mdmj"))))
5177 ("palatino-tex"
5178 ,(origin
5179 (method svn-fetch)
5180 (uri (svn-reference
5181 (url (string-append "svn://www.tug.org/texlive/tags/"
5182 %texlive-tag "/Master/texmf-dist/"
5183 "/tex/latex/palatino"))
5184 (revision %texlive-revision)))
5185 (file-name (string-append name "-tex-" version "-checkout"))
5186 (sha256
5187 (base32
5188 "0ng9w7i0p1nb51amla32jj86vx6p84m6qc7asam3g4x8w5jf7s27"))))
5189 ("dvips"
5190 ,(origin
5191 (method svn-fetch)
5192 (uri (svn-reference
5193 (url (string-append "svn://www.tug.org/texlive/tags/"
5194 %texlive-tag "/Master/texmf-dist/"
5195 "/dvips/palatino/"))
5196 (revision %texlive-revision)))
5197 (file-name (string-append name "-dvips-" version "-checkout"))
5198 (sha256
5199 (base32
5200 "1pdbkfmhx4kk3brh5lg6fyl9ad2kbjmkrhgcx84klnlhq01mfdhb"))))
5201 ("fonts-map"
5202 ,(origin
5203 (method svn-fetch)
5204 (uri (svn-reference
5205 (url (string-append "svn://www.tug.org/texlive/tags/"
5206 %texlive-tag "/Master/texmf-dist/"
5207 "/fonts/map/dvips/palatino/"))
5208 (revision %texlive-revision)))
5209 (file-name (string-append name "-fonts-map-" version "-checkout"))
5210 (sha256
5211 (base32
5212 "0rg13hyp652hp3gnrj5pbyb84zkqmyi1qnm8c6spcyaq8pm06l0d"))))))
5213 (home-page "https://ctan.org/pkg/urw-base35")
5214 (synopsis "URW Base 35 font pack for LaTeX")
5215 (description
5216 "This package provides a drop-in replacements for the Palatino font from
5217Adobe's basic set.")
5218 ;; No license version specified.
5219 (license license:gpl3+)))
5220
4628315b
RW
5221(define-public texlive-fonts-adobe-zapfding
5222 (package
5223 (name "texlive-fonts-adobe-zapfding")
5224 (version (number->string %texlive-revision))
5225 (source (origin
5226 (method svn-fetch)
5227 (uri (svn-reference
5228 (url (string-append "svn://www.tug.org/texlive/tags/"
5229 %texlive-tag "/Master/texmf-dist/"
5230 "/fonts/type1/urw/zapfding/"))
5231 (revision %texlive-revision)))
5232 (file-name (string-append name "-" version "-checkout"))
5233 (sha256
5234 (base32
5235 "1sp3jblg3khp0yj121blvhph6ib09919kyrsk5x2lg258yypqyis"))))
5236 (build-system trivial-build-system)
5237 (arguments
5238 `(#:modules ((guix build utils)
5239 (ice-9 match))
5240 #:builder
5241 (begin
5242 (use-modules (guix build utils)
5243 (ice-9 match))
5244 (let ((root (string-append (assoc-ref %outputs "out")
5245 "/share/texmf-dist/"))
5246 (pkgs '(("source" . "fonts/type1/urw/zapfding")
5247 ("zapf-afm" . "fonts/afm/adobe/zapfding")
5248 ("zapf-tfm" . "fonts/tfm/adobe/zapfding")
5249 ("urw-afm" . "fonts/afm/urw/zapfding")
5250 ("urw35vf-tfm" . "fonts/tfm/urw35vf/zapfding")
5251
5252 ("zapf-tex" . "tex/latex/zapfding")
5253 ("dvips" . "dvips/zapfding")
5254 ("fonts-map" . "fonts/map/dvips/zapfding"))))
5255 (for-each (match-lambda
5256 ((pkg . dir)
5257 (let ((target (string-append root dir)))
5258 (mkdir-p target)
5259 (copy-recursively (assoc-ref %build-inputs pkg)
5260 target))))
5261 pkgs)
5262 #t))))
5263 (native-inputs
5264 `(("zapf-afm"
5265 ,(origin
5266 (method svn-fetch)
5267 (uri (svn-reference
5268 (url (string-append "svn://www.tug.org/texlive/tags/"
5269 %texlive-tag "/Master/texmf-dist/"
5270 "/fonts/afm/adobe/zapfding"))
5271 (revision %texlive-revision)))
5272 (file-name (string-append name "-afm-" version "-checkout"))
5273 (sha256
5274 (base32
5275 "0qvl4w1bfcpiakkd8rvkism46qnvzj9w7x4r8z9m0y7mspbkblyr"))))
5276 ("zapf-tfm"
5277 ,(origin
5278 (method svn-fetch)
5279 (uri (svn-reference
5280 (url (string-append "svn://www.tug.org/texlive/tags/"
5281 %texlive-tag "/Master/texmf-dist/"
5282 "/fonts/tfm/adobe/zapfding"))
5283 (revision %texlive-revision)))
5284 (file-name (string-append name "-tfm-" version "-checkout"))
5285 (sha256
5286 (base32
5287 "1i8mh9xsl8l4cgsg3nl4ha9q6m55j122riclaxsvkc5ka83432qm"))))
5288 ("urw-afm"
5289 ,(origin
5290 (method svn-fetch)
5291 (uri (svn-reference
5292 (url (string-append "svn://www.tug.org/texlive/tags/"
5293 %texlive-tag "/Master/texmf-dist/"
5294 "/fonts/afm/urw/zapfding"))
5295 (revision %texlive-revision)))
5296 (file-name (string-append name "-urw-afm-" version "-checkout"))
5297 (sha256
5298 (base32
5299 "0m4qndqh7ji723ff82c5c1q8ziqvblbaip7vx05vnl15fqbsnfx1"))))
5300 ("urw35vf-tfm"
5301 ,(origin
5302 (method svn-fetch)
5303 (uri (svn-reference
5304 (url (string-append "svn://www.tug.org/texlive/tags/"
5305 %texlive-tag "/Master/texmf-dist/"
5306 "/fonts/tfm/urw35vf/zapfding"))
5307 (revision %texlive-revision)))
5308 (file-name (string-append name "-urw35vf-tfm-" version "-checkout"))
5309 (sha256
5310 (base32
5311 "167g2x6mpjfqh0w1fhjbw14qcx6ridrj2zm1bd8bi0l2d7phj28m"))))
5312 ("zapf-tex"
5313 ,(origin
5314 (method svn-fetch)
5315 (uri (svn-reference
5316 (url (string-append "svn://www.tug.org/texlive/tags/"
5317 %texlive-tag "/Master/texmf-dist/"
5318 "/tex/latex/zapfding"))
5319 (revision %texlive-revision)))
5320 (file-name (string-append name "-tex-" version "-checkout"))
5321 (sha256
5322 (base32
5323 "0hp7i8f6nbrg7irrwc8fd7n1hrzjysa84d6iyivwlc65v9p7lmd0"))))
5324 ("dvips"
5325 ,(origin
5326 (method svn-fetch)
5327 (uri (svn-reference
5328 (url (string-append "svn://www.tug.org/texlive/tags/"
5329 %texlive-tag "/Master/texmf-dist/"
5330 "/dvips/zapfding/"))
5331 (revision %texlive-revision)))
5332 (file-name (string-append name "-dvips-" version "-checkout"))
5333 (sha256
5334 (base32
5335 "1f18sc4qwxykd786zhn6szcrycqvpvfhlcim71aamxmwghakd7fa"))))
5336 ("fonts-map"
5337 ,(origin
5338 (method svn-fetch)
5339 (uri (svn-reference
5340 (url (string-append "svn://www.tug.org/texlive/tags/"
5341 %texlive-tag "/Master/texmf-dist/"
5342 "/fonts/map/dvips/zapfding/"))
5343 (revision %texlive-revision)))
5344 (file-name (string-append name "-fonts-map-" version "-checkout"))
5345 (sha256
5346 (base32
5347 "17kwxmdrgz2fb072hx57a3pidcrhbgayphx11zyld2hv9149pkyl"))))))
5348 (home-page "https://ctan.org/pkg/urw-base35")
5349 (synopsis "URW Base 35 font pack for LaTeX")
5350 (description
5351 "This package provides a drop-in replacements for the Zapfding font from
5352Adobe's basic set.")
5353 ;; No license version specified.
5354 (license license:gpl3+)))
5355
f45a5520
RW
5356(define-public texlive-fonts-rsfs
5357 (package
5358 (name "texlive-fonts-rsfs")
5359 (version (number->string %texlive-revision))
5360 (source (origin
5361 (method svn-fetch)
5362 (uri (svn-reference
5363 (url (string-append "svn://www.tug.org/texlive/tags/"
5364 %texlive-tag "/Master/texmf-dist/"
5365 "/fonts/source/public/rsfs/"))
5366 (revision %texlive-revision)))
e26de9c9 5367 (file-name (string-append name "-" version "-checkout"))
f45a5520
RW
5368 (sha256
5369 (base32
5370 "0r12pn02r4a955prcvq0048nifh86ihlcgvw3pppqqvfngv34l5h"))))
5371 (build-system gnu-build-system)
5372 (arguments
5373 `(#:modules ((guix build gnu-build-system)
5374 (guix build utils)
5375 (srfi srfi-1)
5376 (srfi srfi-26))
5377 #:tests? #f ; no tests
5378 #:phases
5379 (modify-phases %standard-phases
5380 (delete 'configure)
5381 (replace 'build
5382 (lambda* (#:key inputs #:allow-other-keys)
5383 (let ((mf (assoc-ref inputs "texlive-metafont-base")))
5384 ;; Tell mf where to find mf.base
5385 (setenv "MFBASES" (string-append mf "/share/texmf-dist/web2c"))
5386 ;; Tell mf where to look for source files
5387 (setenv "MFINPUTS"
5388 (string-append (getcwd) ":"
5389 mf "/share/texmf-dist/metafont/base:"
5390 (assoc-ref inputs "texlive-fonts-cm")
5391 "/share/texmf-dist/fonts/source/public/cm")))
5392 (mkdir "build")
d8ac82c2
MW
5393 (for-each (lambda (font)
5394 (format #t "building font ~a\n" font)
5395 (invoke "mf" "-progname=mf"
5396 "-output-directory=build"
5397 (string-append "\\"
5398 "mode:=ljfour; "
5399 "mag:=1; "
5400 "batchmode; "
5401 "input " (basename font ".mf"))))
5402 (find-files "." "[0-9]+\\.mf$"))
5403 #t))
f45a5520
RW
5404 (replace 'install
5405 (lambda* (#:key outputs #:allow-other-keys)
5406 (let* ((out (assoc-ref outputs "out"))
5407 (tfm (string-append
5408 out "/share/texmf-dist/fonts/tfm/public/rsfs"))
5409 (mf (string-append
5410 out "/share/texmf-dist/fonts/source/public/rsfs")))
5411 (for-each (cut install-file <> tfm)
5412 (find-files "build" "\\.*"))
5413 (for-each (cut install-file <> mf)
5414 (find-files "." "\\.mf"))
5415 #t))))))
5416 (native-inputs
5417 `(("texlive-bin" ,texlive-bin)
5418 ("texlive-metafont-base" ,texlive-metafont-base)
5419 ("texlive-fonts-cm" ,texlive-fonts-cm)))
b8d8806b 5420 (home-page "https://www.ctan.org/pkg/rsfs")
f45a5520
RW
5421 (synopsis "Ralph Smith's Formal Script font")
5422 (description
5423 "The fonts provide uppercase formal script letters for use as symbols in
5424scientific and mathematical typesetting (in contrast to the informal script
5425fonts such as that used for the calligraphic symbols in the TeX maths symbol
5426font). The fonts are provided as Metafont source, and as derived Adobe Type 1
5427format. LaTeX support, for using these fonts in mathematics, is available via
5428one of the packages @code{calrsfs} and @code{mathrsfs}.")
5429 (license (license:fsf-free "http://mirrors.ctan.org/fonts/rsfs/README"))))
5430
1562763c
RW
5431(define-public texlive-latex-eso-pic
5432 (package
5433 (name "texlive-latex-eso-pic")
5434 (version (number->string %texlive-revision))
5435 (source (origin
5436 (method svn-fetch)
5437 (uri (texlive-ref "latex" "eso-pic"))
2678a63b 5438 (file-name (string-append name "-" version "-checkout"))
1562763c
RW
5439 (sha256
5440 (base32
5441 "1xvmms28mvvfpks9x7lfya2xhh5k8jy3qnlih1mzcnf156xnb89z"))))
5442 (build-system texlive-build-system)
5443 (arguments '(#:tex-directory "latex/eso-pic"))
b8d8806b 5444 (home-page "https://www.ctan.org/pkg/eso-pic")
1562763c
RW
5445 (synopsis "Add picture commands (or backgrounds) to every page")
5446 (description
5447 "The package adds one or more user commands to LaTeX's @code{shipout}
5448routine, which may be used to place the output at fixed positions. The
5449@code{grid} option may be used to find the correct places.")
5450 (license license:lppl1.3+)))
5451
ae3779d5
RW
5452(define-public texlive-latex-eepic
5453 (package
5454 (name "texlive-latex-eepic")
5455 (version (number->string %texlive-revision))
5456 (source (origin
5457 (method svn-fetch)
5458 (uri (svn-reference
5459 (url (string-append "svn://www.tug.org/texlive/tags/"
5460 %texlive-tag "/Master/texmf-dist/"
5461 "/tex/latex/eepic"))
5462 (revision %texlive-revision)))
84d63643 5463 (file-name (string-append name "-" version "-checkout"))
ae3779d5
RW
5464 (sha256
5465 (base32
5466 "1c68gvh021pvybg07apsd2xhq2ljbg80kq94wh71drdga3c2zqjw"))))
5467 (build-system trivial-build-system)
5468 (arguments
5469 `(#:modules ((guix build utils))
5470 #:builder
5471 (begin
5472 (use-modules (guix build utils))
5473 (let ((target (string-append (assoc-ref %outputs "out")
5474 "/share/texmf-dist/tex/latex/eepic")))
5475 (mkdir-p target)
5476 (copy-recursively (assoc-ref %build-inputs "source") target)
5477 #t))))
b8d8806b 5478 (home-page "https://www.ctan.org/pkg/eepic")
ae3779d5
RW
5479 (synopsis "Extensions to epic and the LaTeX drawing tools")
5480 (description
5481 "Extensions to @code{epic} and the LaTeX picture drawing environment,
5482include the drawing of lines at any slope, the drawing of circles in any
5483radii, and the drawing of dotted and dashed lines much faster with much less
5484TeX memory, and providing several new commands for drawing ellipses, arcs,
5485splines, and filled circles and ellipses. The package uses @code{tpic}
5486@code{\\special} commands.")
5487 (license license:public-domain)))
5488
245f1f31
RW
5489(define-public texlive-latex-enumitem
5490 (package
5491 (name "texlive-latex-enumitem")
5492 (version (number->string %texlive-revision))
5493 (source (origin
5494 (method svn-fetch)
5495 (uri (svn-reference
5496 (url (string-append "svn://www.tug.org/texlive/tags/"
5497 %texlive-tag "/Master/texmf-dist/"
5498 "/tex/latex/enumitem"))
5499 (revision %texlive-revision)))
5500 (file-name (string-append name "-" version "-checkout"))
5501 (sha256
5502 (base32
5503 "0q24b1bkdi9l6bw787bpggww83jh2vj8955aw2m5yccqbx4vgr5r"))))
5504 (build-system trivial-build-system)
5505 (arguments
5506 `(#:modules ((guix build utils))
5507 #:builder
5508 (begin
5509 (use-modules (guix build utils))
5510 (let ((target (string-append (assoc-ref %outputs "out")
5511 "/share/texmf-dist/tex/latex/enumitem")))
5512 (mkdir-p target)
5513 (copy-recursively (assoc-ref %build-inputs "source") target)
5514 #t))))
b8d8806b 5515 (home-page "https://www.ctan.org/pkg/enumitem")
245f1f31
RW
5516 (synopsis "Customize basic list environments")
5517 (description
5518 "This package is intended to ease customizing the three basic list
5519environments: @code{enumerate}, @code{itemize} and @code{description}. It
5520extends their syntax to allow an optional argument where a set of parameters
5521in the form @code{key=value} are available, for example:
5522@code{\\begin{itemize}[itemsep=1ex,leftmargin=1cm]}.")
5523 (license license:lppl1.3+)))
5524
ecffeeb5
RW
5525(define-public texlive-latex-multirow
5526 (package
5527 (name "texlive-latex-multirow")
5528 (version (number->string %texlive-revision))
5529 (source (origin
5530 (method svn-fetch)
5531 (uri (texlive-ref "latex" "multirow"))
6a919804 5532 (file-name (string-append name "-" version "-checkout"))
ecffeeb5
RW
5533 (sha256
5534 (base32
5535 "0qlxy47f1f8plgch3jqfsnrdgpyz20sz46yp33i2jwvf9hvfczf0"))))
5536 (build-system texlive-build-system)
5537 (arguments '(#:tex-directory "latex/multirow"))
b8d8806b 5538 (home-page "https://www.ctan.org/pkg/multirow")
ecffeeb5
RW
5539 (synopsis "Create tabular cells spanning multiple rows")
5540 (description
5541 "The package provides tools for creating tabular cells spanning multiple
5542rows. It has a lot of flexibility, including an option for specifying an
5543entry at the \"natural\" width of its text.")
5544 (license license:lppl1.3+)))
5545
da38b235
RW
5546(define-public texlive-latex-overpic
5547 (package
5548 (name "texlive-latex-overpic")
5549 (version (number->string %texlive-revision))
5550 (source (origin
5551 (method svn-fetch)
5552 (uri (svn-reference
5553 (url (string-append "svn://www.tug.org/texlive/tags/"
5554 %texlive-tag "/Master/texmf-dist/"
5555 "/tex/latex/overpic"))
5556 (revision %texlive-revision)))
b2aef721 5557 (file-name (string-append name "-" version "-checkout"))
da38b235
RW
5558 (sha256
5559 (base32
d4d9a1ec 5560 "1rpx4ibjncj5416rg19v0xjbj3z9avhfdfn2gzp8r8sz9vz25c6g"))))
da38b235
RW
5561 (build-system trivial-build-system)
5562 (arguments
5563 `(#:modules ((guix build utils))
5564 #:builder
5565 (begin
5566 (use-modules (guix build utils))
5567 (let ((target (string-append (assoc-ref %outputs "out")
5568 "/share/texmf-dist/tex/latex/overpic")))
5569 (mkdir-p target)
5570 (copy-recursively (assoc-ref %build-inputs "source") target)
5571 #t))))
b8d8806b 5572 (home-page "https://www.ctan.org/pkg/overpic")
da38b235
RW
5573 (synopsis "Combine LaTeX commands over included graphics")
5574 (description
5575 "The @code{overpic} environment is a cross between the LaTeX
5576@code{picture} environment and the @code{\\includegraphics} command of
5577@code{graphicx}. The resulting picture environment has the same dimensions as
5578the included graphic. LaTeX commands can be placed on the graphic at defined
5579positions; a grid for orientation is available.")
5580 (license license:lppl1.0+)))
5581
e0d307d1
RW
5582(define-public texlive-latex-parskip
5583 (package
5584 (name "texlive-latex-parskip")
5585 (version (number->string %texlive-revision))
5586 (source (origin
5587 (method svn-fetch)
5588 (uri (svn-reference
5589 (url (string-append "svn://www.tug.org/texlive/tags/"
5590 %texlive-tag "/Master/texmf-dist/"
5591 "/tex/latex/parskip"))
5592 (revision %texlive-revision)))
5593 (file-name (string-append name "-" version "-checkout"))
5594 (sha256
5595 (base32
5596 "14r6h9hqb0qgccxj5l1208694fx8sb8avmgzps36lsbbpszl7i7m"))))
5597 (build-system trivial-build-system)
5598 (arguments
5599 `(#:modules ((guix build utils))
5600 #:builder
5601 (begin
5602 (use-modules (guix build utils))
5603 (let ((target (string-append (assoc-ref %outputs "out")
5604 "/share/texmf-dist/tex/latex/parskip")))
5605 (mkdir-p target)
5606 (copy-recursively (assoc-ref %build-inputs "source") target)
5607 #t))))
b8d8806b 5608 (home-page "https://www.ctan.org/pkg/parskip")
e0d307d1
RW
5609 (synopsis "Layout with zero \\parindent, non-zero \\parskip")
5610 (description
5611 "Simply changing @code{\\parskip} and @code{\\parindent} leaves a layout
5612that is untidy; this package (though it is no substitute for a properly
5613designed class) helps alleviate this untidiness.")
5614 (license license:lppl)))
5615
adc02c70
RW
5616(define-public texlive-latex-pdfpages
5617 (package
5618 (name "texlive-latex-pdfpages")
5619 (version (number->string %texlive-revision))
5620 (source (origin
5621 (method svn-fetch)
5622 (uri (texlive-ref "latex" "pdfpages"))
7372ce18 5623 (file-name (string-append name "-" version "-checkout"))
adc02c70
RW
5624 (sha256
5625 (base32
d4d9a1ec 5626 "0s4izcah7im67889qz4d26pcfpasmm35sj1rw4ragkkdk3rlbbbd"))))
adc02c70
RW
5627 (build-system texlive-build-system)
5628 (arguments '(#:tex-directory "latex/pdfpages"))
b8d8806b 5629 (home-page "https://www.ctan.org/pkg/pdfpages")
adc02c70
RW
5630 (synopsis "Include PDF documents in LaTeX")
5631 (description
5632 "This package simplifies the inclusion of external multi-page PDF
5633documents in LaTeX documents. Pages may be freely selected and it is possible
5634to put several logical pages onto each sheet of paper. Furthermore a lot of
5635hypertext features like hyperlinks and article threads are provided. The
5636package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to
5637use this package to insert PostScript files, in addition to PDF files.")
5638 (license license:lppl1.3+)))
5639
d8fef6ea
RW
5640(define-public texlive-fonts-stmaryrd
5641 (package
5642 (name "texlive-fonts-stmaryrd")
5643 (version (number->string %texlive-revision))
5644 (source (origin
5645 (method svn-fetch)
5646 (uri (texlive-ref "fonts" "stmaryrd"))
19835372 5647 (file-name (string-append name "-" version "-checkout"))
d8fef6ea
RW
5648 (sha256
5649 (base32
5650 "08pn4ca3vl6qm9l3wm5h5iyjsrg411kkm1yana329xwg2j14s9n6"))))
5651 (build-system texlive-build-system)
5652 (arguments
5653 '(#:tex-directory "latex/stmaryrd"
5654 #:phases
5655 (modify-phases %standard-phases
5656 (add-after 'configure 'patch-ins
5657 (lambda _
5658 (substitute* "stmaryrd.ins"
5659 (("^%% LaTeX2e.*") "\\input docstrip\n")
5660 (("fontdef\\}\\}" line)
5661 (string-append line "\n\\endbatchfile")))
5662 #t)))))
b8d8806b 5663 (home-page "https://www.ctan.org/pkg/stmaryrd")
d8fef6ea
RW
5664 (synopsis "St Mary Road symbols for theoretical computer science")
5665 (description
5666 "The fonts were originally distributed as Metafont sources only, but
5667Adobe Type 1 versions are also now available. Macro support is provided for
5668use under LaTeX; the package supports the @code{only} option (provided by the
5669@code{somedefs} package) to restrict what is loaded, for those who don't need
5670the whole font.")
5671 (license license:lppl)))
5672
2db3a034
RW
5673(define-public texlive-latex-subfigure
5674 (package
5675 (name "texlive-latex-subfigure")
5676 (version (number->string %texlive-revision))
5677 (source (origin
5678 (method svn-fetch)
5679 (uri (texlive-ref "latex" "subfigure"))
e1834df6 5680 (file-name (string-append name "-" version "-checkout"))
2db3a034
RW
5681 (sha256
5682 (base32
5683 "15spcl5wb7w269qd6y596vp4yi8sa5ppcx8w4z2i9kyp02r3a0yb"))))
5684 (build-system texlive-build-system)
5685 (arguments '(#:tex-directory "latex/subfigure"))
b8d8806b 5686 (home-page "https://www.ctan.org/pkg/subfigure")
2db3a034
RW
5687 (synopsis "Figures divided into subfigures")
5688 (description
5689 "This (deprecated) package provides support for the manipulation and
5690reference of small or \"sub\" figures and tables within a single figure or
5691table environment. It is convenient to use this package when your subfigures
5692are to be separately captioned, referenced, or are to be included in the
5693List-of-Figures. A new @code{\\subfigure} command is introduced which can be
5694used inside a figure environment for each subfigure. An optional first
5695argument is used as the caption for that subfigure. The package is now
5696considered obsolete: it was superseded by @code{subfig}, but users may find
5697the more recent @code{subcaption} package more satisfactory.")
5698 (license license:lppl)))
5699
c73d0e9d
RW
5700(define-public texlive-latex-tabulary
5701 (package
5702 (name "texlive-latex-tabulary")
5703 (version (number->string %texlive-revision))
5704 (source (origin
5705 (method svn-fetch)
5706 (uri (texlive-ref "latex" "tabulary"))
5707 (file-name (string-append name "-" version "-checkout"))
5708 (sha256
5709 (base32
5710 "1adkdx2zkk42g82nqf57lv1nc1z7kwl13jmy8vpcsizsa0xdnx9n"))))
5711 (build-system texlive-build-system)
5712 (arguments '(#:tex-directory "latex/tabulary"))
b8d8806b 5713 (home-page "https://www.ctan.org/pkg/tabulary")
c73d0e9d
RW
5714 (synopsis "Tabular with variable width columns balanced")
5715 (description
5716 "The package defines a @code{tabular*}-like environment, @code{tabulary},
5717taking a \"total width\" argument as well as the column specifications. The
5718environment uses column types @code{L}, @code{C}, @code{R} and @code{J} for
5719variable width columns (@code{\\raggedright}, @code{\\centering},
5720@code{\\raggedleft}, and normally justified). In contrast to
5721@code{tabularx}'s @code{X} columns, the width of each column is weighted
5722according to the natural width of the widest cell in the column.")
5723 (license license:lppl)))
5724
e3088297
RW
5725(define-public texlive-latex-threeparttable
5726 (package
5727 (name "texlive-latex-threeparttable")
5728 (version (number->string %texlive-revision))
5729 (source (origin
5730 (method svn-fetch)
5731 (uri (svn-reference
5732 (url (string-append "svn://www.tug.org/texlive/tags/"
5733 %texlive-tag "/Master/texmf-dist/"
5734 "/tex/latex/threeparttable"))
5735 (revision %texlive-revision)))
d57e5d41 5736 (file-name (string-append name "-" version "-checkout"))
e3088297
RW
5737 (sha256
5738 (base32
5739 "10vy9k150w2lviw8h22s2mcykff38xci653m5823s2vv44pwbmzq"))))
5740 (build-system trivial-build-system)
5741 (arguments
5742 `(#:modules ((guix build utils))
5743 #:builder
5744 (begin
5745 (use-modules (guix build utils))
5746 (let ((target (string-append (assoc-ref %outputs "out")
5747 "/share/texmf-dist/tex/latex/threeparttable")))
5748 (mkdir-p target)
5749 (copy-recursively (assoc-ref %build-inputs "source") target)
5750 #t))))
b8d8806b 5751 (home-page "https://www.ctan.org/pkg/threeparttable")
e3088297
RW
5752 (synopsis "Tables with captions and notes all the same width")
5753 (description
5754 "This package facilitates tables with titles (captions) and notes. The
5755title and notes are given a width equal to the body of the table (a
5756@code{tabular} environment). By itself, a @code{threeparttable} does not
5757float, but you can put it in a @code{table} or a @code{table*} or some other
5758environment.")
5759 (license (license:fsf-free "file://threeparttable.sty"))))
5760
1b10d494
RW
5761(define-public texlive-fonts-txfonts
5762 (package
5763 (name "texlive-fonts-txfonts")
5764 (version (number->string %texlive-revision))
5765 (source (origin
5766 (method svn-fetch)
5767 (uri (svn-reference
5768 (url (string-append "svn://www.tug.org/texlive/tags/"
5769 %texlive-tag "/Master/texmf-dist/"
5770 "/tex/latex/txfonts"))
5771 (revision %texlive-revision)))
5772 (file-name (string-append name "-" version "-checkout"))
5773 (sha256
5774 (base32
5775 "0jl921qdphg8i7bkfprackn3xd4gmvxckc526nmzqsmahqkavgg2"))))
5776 (build-system trivial-build-system)
5777 (arguments
5778 `(#:modules ((guix build utils)
5779 (ice-9 match))
5780 #:builder
5781 (begin
5782 (use-modules (guix build utils)
5783 (ice-9 match))
5784 (let ((root (string-append (assoc-ref %outputs "out")
5785 "/share/texmf-dist/"))
5786 (pkgs '(("source" . "tex/latex/txfonts")
5787 ("txfonts-vf" . "fonts/tfm/public/txfonts")
5788 ("txfonts-afm" . "fonts/afm/public/txfonts")
5789 ("txfonts-tfm" . "fonts/tfm/public/txfonts")
5790 ("txfonts-type1" . "fonts/type1/public/txfonts")
5791 ("txfonts-enc" . "fonts/enc/dvips/txfonts")
5792 ("txfonts-map" . "fonts/map/dvips/txfonts"))))
5793 (for-each (match-lambda
5794 ((pkg . dir)
5795 (let ((target (string-append root dir)))
5796 (mkdir-p target)
5797 (copy-recursively (assoc-ref %build-inputs pkg)
5798 target))))
5799 pkgs)
5800 #t))))
5801 (native-inputs
5802 `(("txfonts-tfm"
5803 ,(origin
5804 (method svn-fetch)
5805 (uri (svn-reference
5806 (url (string-append "svn://www.tug.org/texlive/tags/"
5807 %texlive-tag "/Master/texmf-dist/"
5808 "/fonts/tfm/public/txfonts"))
5809 (revision %texlive-revision)))
5810 (file-name (string-append name "-tfm-" version "-checkout"))
5811 (sha256
5812 (base32
5813 "12ffmbrp48ap35qa3b4mi6ckif9q2vf7972jxh5dc1yzykhla2xv"))))
5814 ("txfonts-vf"
5815 ,(origin
5816 (method svn-fetch)
5817 (uri (svn-reference
5818 (url (string-append "svn://www.tug.org/texlive/tags/"
5819 %texlive-tag "/Master/texmf-dist/"
5820 "/fonts/vf/public/txfonts"))
5821 (revision %texlive-revision)))
5822 (file-name (string-append name "-vf-" version "-checkout"))
5823 (sha256
5824 (base32
5825 "04acyfdwvxpfx4l2xh2bpzdmpvwdf2pzbs7a236b0xckz2jvc1ci"))))
5826 ("txfonts-afm"
5827 ,(origin
5828 (method svn-fetch)
5829 (uri (svn-reference
5830 (url (string-append "svn://www.tug.org/texlive/tags/"
5831 %texlive-tag "/Master/texmf-dist/"
5832 "/fonts/afm/public/txfonts"))
5833 (revision %texlive-revision)))
5834 (file-name (string-append name "-afm-" version "-checkout"))
5835 (sha256
5836 (base32
5837 "1705klz51pnqzcs89s3521b84b6c89wlczflsh0vci66nl155yis"))))
5838 ("txfonts-type1"
5839 ,(origin
5840 (method svn-fetch)
5841 (uri (svn-reference
5842 (url (string-append "svn://www.tug.org/texlive/tags/"
5843 %texlive-tag "/Master/texmf-dist/"
5844 "/fonts/type1/public/txfonts"))
5845 (revision %texlive-revision)))
5846 (file-name (string-append name "-type1-" version "-checkout"))
5847 (sha256
5848 (base32
5849 "0ajwr7zb6ch3gxd0g8p2i4llhy2wr9a9saz6jq6hm6fxf4pgl5h3"))))
5850 ("txfonts-map"
5851 ,(origin
5852 (method svn-fetch)
5853 (uri (svn-reference
5854 (url (string-append "svn://www.tug.org/texlive/tags/"
5855 %texlive-tag "/Master/texmf-dist/"
5856 "/fonts/map/dvips/txfonts"))
5857 (revision %texlive-revision)))
5858 (file-name (string-append name "-map-" version "-checkout"))
5859 (sha256
5860 (base32
5861 "0kamr8a9x24jakas3v09dgv7kkpybj3i7qv4vz1iyypqr6kk1raj"))))
5862 ("txfonts-enc"
5863 ,(origin
5864 (method svn-fetch)
5865 (uri (svn-reference
5866 (url (string-append "svn://www.tug.org/texlive/tags/"
5867 %texlive-tag "/Master/texmf-dist/"
5868 "/fonts/enc/dvips/txfonts"))
5869 (revision %texlive-revision)))
5870 (file-name (string-append name "-enc-" version "-checkout"))
5871 (sha256
5872 (base32
5873 "1bal5fhw0xlhl37ayv8vlnqnsn1y82kadzfjhbgr223blspp4zsj"))))))
b8d8806b 5874 (home-page "https://www.ctan.org/pkg/threeparttable")
1b10d494
RW
5875 (synopsis "Times-like fonts in support of mathematics")
5876 (description
5877 "Txfonts supplies virtual text roman fonts using Adobe Times (or URW
5878NimbusRomNo9L) with some modified and additional text symbols in the OT1, T1,
5879and TS1 encodings; maths alphabets using Times/URW Nimbus; maths fonts
5880providing all the symbols of the Computer Modern and AMS fonts, including all
5881the Greek capital letters from CMR; and additional maths fonts of various
5882other symbols.
5883
5884The set is complemented by a sans-serif set of text fonts, based on
5885Helvetica/NimbusSanL, and a monospace set.
5886
5887All the fonts are in Type 1 format (AFM and PFB files), and are supported by
5888TeX metrics (VF and TFM files) and macros for use with LaTeX.")
5889 ;; Any version of the GPL with font exception.
5890 (license license:gpl3+)))
5891
f9e0fcb2
RW
5892(define-public texlive-fonts-iwona
5893 (package
5894 (name "texlive-fonts-iwona")
5895 (version "0.995b")
5896 (source (origin
5897 (method url-fetch)
5898 (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
5899 (string-map (lambda (c)
5900 (if (char=? c #\.)
5901 #\_ c))
5902 version)
5903 ".zip"))
5904 (sha256
5905 (base32
5906 "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
5907 (build-system trivial-build-system)
5908 (arguments
5909 `(#:modules ((guix build utils))
5910 #:builder
5911 (begin
5912 (use-modules (guix build utils))
5913 (let ((target (string-append (assoc-ref %outputs "out")
5914 "/share/texmf-dist/"))
5915 (unzip (string-append (assoc-ref %build-inputs "unzip")
5916 "/bin/unzip")))
e3cfef22 5917 (invoke unzip (assoc-ref %build-inputs "source"))
f9e0fcb2 5918 (mkdir-p target)
e3cfef22
MW
5919 (copy-recursively "iwona" target)
5920 #t))))
f9e0fcb2
RW
5921 (native-inputs
5922 `(("unzip" ,unzip)))
5923 (home-page "http://jmn.pl/en/kurier-i-iwona/")
5924 (synopsis "Sans-serif typeface for TeX")
5925 (description "Iwona is a two-element sans-serif typeface. It was created
5926as an alternative version of the Kurier typeface, which was designed in 1975
5927for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
5928supervision of Roman Tomaszewski. Kurier was designed for linotype
5929typesetting of newspapers and similar periodicals. The Iwona fonts are an
5930alternative version of the Kurier fonts. The difference lies in the absence
5931of ink traps which typify the Kurier font.")
5932 (license license:gfl1.0)))
5933
acc620d6
RW
5934(define-public texlive-latex-titlesec
5935 (package
5936 (name "texlive-latex-titlesec")
5937 (version (number->string %texlive-revision))
5938 (source (origin
5939 (method svn-fetch)
5940 (uri (svn-reference
5941 (url (string-append "svn://www.tug.org/texlive/tags/"
5942 %texlive-tag "/Master/texmf-dist/"
5943 "/tex/latex/titlesec"))
5944 (revision %texlive-revision)))
0475e35c 5945 (file-name (string-append name "-" version "-checkout"))
acc620d6
RW
5946 (sha256
5947 (base32
5948 "04nmkhqx6jxcxx9a30zbcd5smxi5fd0cbp132bki7fnvhspnhg21"))))
5949 (build-system trivial-build-system)
5950 (arguments
5951 `(#:modules ((guix build utils))
5952 #:builder
5953 (begin
5954 (use-modules (guix build utils))
5955 (let ((target (string-append (assoc-ref %outputs "out")
5956 "/share/texmf-dist/tex/latex/titlesec")))
5957 (mkdir-p target)
5958 (copy-recursively (assoc-ref %build-inputs "source") target)
5959 #t))))
b8d8806b 5960 (home-page "https://www.ctan.org/pkg/titlesec")
acc620d6
RW
5961 (synopsis "Select alternative section titles")
5962 (description
5963 "This package provides an interface to sectioning commands for selection
5964from various title styles, e.g. for marginal titles and to change the font of
5965all headings with a single command, also providing simple one-step page
5966styles. It also includes a package to change the page styles when there are
5967floats in a page. You may assign headers/footers to individual floats, too.")
5968 (license license:lppl)))
5969
274e3d4f
RW
5970(define-public texlive-latex-type1cm
5971 (package
5972 (name "texlive-latex-type1cm")
5973 (version (number->string %texlive-revision))
5974 (source (origin
5975 (method svn-fetch)
5976 (uri (texlive-ref "latex" "type1cm"))
5977 (file-name (string-append name "-" version "-checkout"))
5978 (sha256
5979 (base32
5980 "1lvxrqfwcwa4p31zyfm80gr05v8c28xybv5ri79zi2ngz6834z12"))))
5981 (build-system texlive-build-system)
5982 (arguments '(#:tex-directory "latex/type1cm"))
b8d8806b 5983 (home-page "https://www.ctan.org/pkg/type1cm")
274e3d4f
RW
5984 (synopsis "Arbitrary size font selection in LaTeX")
5985 (description
5986 "LaTeX, by default, restricts the sizes at which you can use its default
5987computer modern fonts, to a fixed set of discrete sizes (effectively, a set
5988specified by Knuth). The @code{type1cm} package removes this restriction;
5989this is particularly useful when using scalable versions of the CM
5990fonts (Bakoma, or the versions from BSR/Y&Y, or True Type versions from Kinch,
5991PCTeX, etc.). In fact, since modern distributions will automatically generate
5992any bitmap font you might need, @code{type1cm} has wider application than just
36a17f05 5993those using scalable versions of the fonts. Note that the LaTeX distribution
274e3d4f
RW
5994now contains a package @code{fix-cm},f which performs the task of
5995@code{type1cm}, as well as doing the same job for T1- and TS1-encoded
5996@code{ec} fonts.")
5997 (license license:lppl)))
5998
406af0d6
RW
5999(define-public texlive-latex-lh
6000 (package
6001 (name "texlive-latex-lh")
6002 (version (number->string %texlive-revision))
6003 (source (origin
6004 (method svn-fetch)
6005 (uri (texlive-ref "latex" "lh"))
de20fd6a 6006 (file-name (string-append name "-" version "-checkout"))
406af0d6
RW
6007 (sha256
6008 (base32
6009 "00gdiwh3sfhh1iimjhpja7lm7k4vzqzql2irgwnpz94qvh25zwi5"))))
6010 (build-system texlive-build-system)
6011 (arguments '(#:tex-directory "latex/lh"))
b8d8806b 6012 (home-page "https://www.ctan.org/pkg/lh")
406af0d6
RW
6013 (synopsis "Cyrillic fonts that support LaTeX standard encodings")
6014 (description
6015 "The LH fonts address the problem of the wide variety of alphabets that
6016are written with Cyrillic-style characters. The fonts are the original basis
6017of the set of T2* and X2 encodings that are now used when LaTeX users need to
6018write in Cyrillic languages. Macro support in standard LaTeX encodings is
6019offered through the latex-cyrillic and t2 bundles, and the package itself
6020offers support for other (more traditional) encodings. The fonts, in the
6021standard T2* and X2 encodings are available in Adobe Type 1 format, in the
6022CM-Super family of fonts. The package also offers its own LaTeX support for
6023OT2 encoded fonts, CM bright shaped fonts and Concrete shaped fonts.")
6024 (license license:lppl)))
6025
44436def
RW
6026(define-public texlive-metapost
6027 (package
6028 (name "texlive-metapost")
6029 (version (number->string %texlive-revision))
6030 (source (origin
6031 (method svn-fetch)
6032 (uri (svn-reference
6033 (url (string-append "svn://www.tug.org/texlive/tags/"
6034 %texlive-tag "/Master/texmf-dist/"
6035 "/metapost"))
6036 (revision %texlive-revision)))
b4bb2750 6037 (file-name (string-append name "-" version "-checkout"))
44436def
RW
6038 (sha256
6039 (base32
d4d9a1ec 6040 "0sf18pc6chgy26p9bxxn44xcqhzjrfb53jxjr2y7l3jb6xllhblq"))))
44436def
RW
6041 (build-system trivial-build-system)
6042 (arguments
6043 `(#:modules ((guix build utils))
6044 #:builder
6045 (begin
6046 (use-modules (guix build utils))
6047 (let ((target (string-append (assoc-ref %outputs "out")
6048 "/share/texmf-dist/metapost")))
6049 (mkdir-p target)
6050 (copy-recursively (assoc-ref %build-inputs "source") target)
6051 #t))))
b8d8806b 6052 (home-page "https://www.ctan.org/pkg/metapost")
44436def
RW
6053 (synopsis "Create scalable illustrations")
6054 (description
6055 "MetaPost uses a language based on that of Metafont to produce precise
6056technical illustrations. Its output is scalable PostScript or SVG, rather
6057than the bitmaps Metafont creates.")
6058 (license license:lppl)))
6059
9ff7161a
LC
6060(define-public texlive-latex-acmart
6061 (package
6062 (name "texlive-latex-acmart")
ff281acc 6063 (version "1.60")
9ff7161a
LC
6064 (source (origin
6065 (method svn-fetch)
6066 (uri (texlive-ref "latex" "acmart"))
6067 (sha256
6068 (base32
ff281acc 6069 "0n62cs8dhcbn29y9ij1nnyigzr76yhk36kyahhqkkmvbafbys9s7"))
9ff7161a
LC
6070 (file-name (string-append name "-" version "-checkout"))))
6071 (build-system texlive-build-system)
6072 (arguments '(#:tex-directory "latex/acmart"))
b8d8806b 6073 (home-page "https://www.ctan.org/pkg/acmart")
9ff7161a
LC
6074 (synopsis "Class for typesetting publications of ACM")
6075 (description
6076 "This package provides a class for typesetting publications of the
6077Association for Computing Machinery (ACM).")
6078 (license license:lppl1.3+)))
6079
3966ebbb
RW
6080(define-public texlive-latex-varwidth
6081 (package
6082 (name "texlive-latex-varwidth")
6083 (version (number->string %texlive-revision))
6084 (source (origin
6085 (method svn-fetch)
6086 (uri (svn-reference
6087 (url (string-append "svn://www.tug.org/texlive/tags/"
6088 %texlive-tag "/Master/texmf-dist/"
6089 "/tex/latex/varwidth"))
6090 (revision %texlive-revision)))
6091 (file-name (string-append name "-" version "-checkout"))
6092 (sha256
6093 (base32
6094 "1bmz9ap0ffyg7qry2xi7lki06qx4809w028xvk88cl66h7p46g52"))))
6095 (build-system trivial-build-system)
6096 (arguments
6097 `(#:modules ((guix build utils))
6098 #:builder
6099 (begin
6100 (use-modules (guix build utils))
6101 (let ((target (string-append (assoc-ref %outputs "out")
6102 "/share/texmf-dist/tex/latex/varwidth")))
6103 (mkdir-p target)
6104 (copy-recursively (assoc-ref %build-inputs "source") target)
6105 #t))))
b8d8806b 6106 (home-page "https://www.ctan.org/pkg/varwidth")
3966ebbb
RW
6107 (synopsis "Variable-width minipage")
6108 (description
6109 "The @code{varwidth} environment is superficially similar to
6110@code{minipage}, but the specified width is just a maximum value — the box may
6111get a narrower “natural” width.")
6112 (license license:lppl)))
6113
cd2c77f4
RW
6114(define-public texlive-latex-wasysym
6115 (package
6116 (name "texlive-latex-wasysym")
6117 (version (number->string %texlive-revision))
6118 (source (origin
6119 (method svn-fetch)
6120 (uri (texlive-ref "latex" "wasysym"))
2cc9c011 6121 (file-name (string-append name "-" version "-checkout"))
cd2c77f4
RW
6122 (sha256
6123 (base32
6124 "1sgwbfwjjf70g54hh93gsd9jp9nm67w6n74x9d72a56n07jbk5hv"))))
6125 (build-system texlive-build-system)
6126 (arguments '(#:tex-directory "latex/wasysym"))
b8d8806b 6127 (home-page "https://www.ctan.org/pkg/wasysym")
cd2c77f4
RW
6128 (synopsis "LaTeX support file to use the WASY2 fonts")
6129 (description
6130 "The wasy2WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs
6131like male and female symbols and astronomical symbols, as well as the complete
6132lasy font set and other odds and ends. The wasysym package implements an easy
6133to use interface for these symbols.")
6134 (license license:lppl)))
6135
63ed869b
RW
6136(define-public texlive-latex-wrapfig
6137 (package
6138 (name "texlive-latex-wrapfig")
6139 (version (number->string %texlive-revision))
6140 (source (origin
6141 (method svn-fetch)
6142 (uri (svn-reference
6143 (url (string-append "svn://www.tug.org/texlive/tags/"
6144 %texlive-tag "/Master/texmf-dist/"
6145 "/tex/latex/wrapfig"))
6146 (revision %texlive-revision)))
6147 (file-name (string-append name "-" version "-checkout"))
6148 (sha256
6149 (base32
6150 "16xpyl0csmmwndz1xhzqfg9l0zcsnqxslsixsqkwd4zsvfj30sv4"))))
6151 (build-system trivial-build-system)
6152 (arguments
6153 `(#:modules ((guix build utils))
6154 #:builder
6155 (begin
6156 (use-modules (guix build utils))
6157 (let ((target (string-append (assoc-ref %outputs "out")
6158 "/share/texmf-dist/tex/latex/wrapfig")))
6159 (mkdir-p target)
6160 (copy-recursively (assoc-ref %build-inputs "source") target)
6161 #t))))
b8d8806b 6162 (home-page "https://www.ctan.org/pkg/wrapfig")
63ed869b
RW
6163 (synopsis "Produces figures which text can flow around")
6164 (description
6165 "This package allows figures or tables to have text wrapped around them.
6166It does not work in combination with list environments, but can be used in a
6167@code{parbox} or @code{minipage}, and in two-column format.")
6168 (license license:lppl)))
6169
c178ffca
RW
6170(define-public texlive-latex-ucs
6171 (package
6172 (name "texlive-latex-ucs")
6173 (version (number->string %texlive-revision))
6174 (source (origin
6175 (method svn-fetch)
6176 (uri (svn-reference
6177 (url (string-append "svn://www.tug.org/texlive/tags/"
6178 %texlive-tag "/Master/texmf-dist/"
6179 "/tex/latex/ucs"))
6180 (revision %texlive-revision)))
6181 (file-name (string-append name "-" version "-checkout"))
6182 (sha256
6183 (base32
6184 "0rrxwi60wmz5dfjifl4fwk66plf7wix85qnhfv4ylvmj6qi6hw37"))))
6185 (build-system trivial-build-system)
6186 (arguments
6187 `(#:modules ((guix build utils))
6188 #:builder
6189 (begin
6190 (use-modules (guix build utils))
6191 (let ((target (string-append (assoc-ref %outputs "out")
6192 "/share/texmf-dist/tex/latex/ucs")))
6193 (mkdir-p target)
6194 (copy-recursively (assoc-ref %build-inputs "source") target)
6195 #t))))
b8d8806b 6196 (home-page "https://www.ctan.org/pkg/ucs")
c178ffca
RW
6197 (synopsis "Extended UTF-8 input encoding support for LaTeX")
6198 (description
6199 "The bundle provides the @code{ucs} package, and @code{utf8x.def},
6200together with a large number of support files. The @code{utf8x.def}
6201definition file for use with @code{inputenc} covers a wider range of Unicode
6202characters than does @code{utf8.def} in the LaTeX distribution. The package
6203provides facilities for efficient use of its large sets of Unicode characters.
6204Glyph production may be controlled by various options, which permits use of
6205non-ASCII characters when coding mathematical formulae. Note that the bundle
6206previously had an alias “unicode”; that alias has now been withdrawn, and no
6207package of that name now exists.")
6208 (license license:lppl1.3+)))
6209
86af0f2a
RW
6210(define-public texlive-latex-preview
6211 (package
6212 (name "texlive-latex-preview")
6213 (version (number->string %texlive-revision))
6214 (source (origin
6215 (method svn-fetch)
6216 (uri (texlive-ref "latex" "preview"))
6217 (file-name (string-append name "-" version "-checkout"))
6218 (sha256
6219 (base32
d4d9a1ec 6220 "1hpsk4yp08qvbl43kqiv0hhwxv3gcqqxcpahyv6ch2b38pbj4bh6"))))
86af0f2a
RW
6221 (build-system texlive-build-system)
6222 (arguments
6223 '(#:tex-directory "latex/preview"
6224 #:phases
6225 (modify-phases %standard-phases
6226 (add-after 'unpack 'remove-generated-file
6227 (lambda _
6228 (delete-file "preview.drv")
6229 #t)))))
b8d8806b 6230 (home-page "https://www.ctan.org/pkg/preview")
86af0f2a
RW
6231 (synopsis "Extract bits of a LaTeX source for output")
6232 (description
6233 "The main purpose of the preview package is the extraction of selected
6234elements from a LaTeX source, like formulas or graphics, into separate
6235pages of a DVI file. A flexible and convenient interface allows it to
6236specify what commands and constructs should be extracted. This works
6237with DVI files postprocessed by either Dvips and Ghostscript or
6238dvipng, but it also works when you are using PDFTeX for generating PDF
6239files.")
6240 (license license:gpl3+)))
6241
87b4360e
RW
6242(define-public texlive-latex-acronym
6243 (package
6244 (name "texlive-latex-acronym")
6245 (version (number->string %texlive-revision))
6246 (source (origin
6247 (method svn-fetch)
6248 (uri (texlive-ref "latex" "acronym"))
6249 (file-name (string-append name "-" version "-checkout"))
6250 (sha256
6251 (base32
6252 "0jmasg40bk53zdd2jc8nc18jvdai3p2wmamy7hwli8gls4nf25qp"))))
6253 (build-system texlive-build-system)
6254 (arguments '(#:tex-directory "latex/acronym"))
b8d8806b 6255 (home-page "https://www.ctan.org/pkg/acronym")
87b4360e
RW
6256 (synopsis "Expand acronyms at least once")
6257 (description
6258 "This package ensures that all acronyms used in the text are spelled out
6259in full at least once. It also provides an environment to build a list of
6260acronyms used. The package is compatible with PDF bookmarks. The package
6261requires the suffix package, which in turn requires that it runs under
6262e-TeX.")
6263 (license license:lppl1.3+)))
6264
fedb80ee
RW
6265(define-public texlive-generic-pdftex
6266 (package
6267 (name "texlive-generic-pdftex")
6268 (version (number->string %texlive-revision))
6269 (source (origin
6270 (method svn-fetch)
6271 (uri (svn-reference
6272 (url (string-append "svn://www.tug.org/texlive/tags/"
6273 %texlive-tag "/Master/texmf-dist/"
6274 "/tex/generic/pdftex"))
6275 (revision %texlive-revision)))
66e765a0 6276 (file-name (string-append name "-" version "-checkout"))
fedb80ee
RW
6277 (sha256
6278 (base32
6279 "0k68zmqzs4qvrqxdwsrawbjb14hxqjfamq649azvai0jjxdpkljd"))))
6280 (build-system trivial-build-system)
6281 (arguments
6282 `(#:modules ((guix build utils))
6283 #:builder
6284 (begin
6285 (use-modules (guix build utils))
6286 (let ((target (string-append (assoc-ref %outputs "out")
7002a45d
PN
6287 "/share/texmf-dist/tex/generic/pdftex"))
6288 (target-map (string-append (assoc-ref %outputs "out")
6289 "/share/texmf-dist/fonts/map/pdftex")))
fedb80ee
RW
6290 (mkdir-p target)
6291 (copy-recursively (assoc-ref %build-inputs "source") target)
7002a45d
PN
6292 (mkdir-p target-map)
6293 (copy-recursively (assoc-ref %build-inputs "pdftex-map") target-map)
fedb80ee 6294 #t))))
7002a45d
PN
6295 (native-inputs
6296 `(("pdftex-map"
6297 ,(origin
6298 (method svn-fetch)
6299 (uri (svn-reference
6300 (url (string-append "svn://www.tug.org/texlive/tags/"
6301 %texlive-tag "/Master/texmf-dist/"
6302 "/fonts/map/pdftex"))
6303 (revision %texlive-revision)))
6304 (file-name (string-append name "-map-" version "-checkout"))
6305 (sha256
6306 (base32
d4d9a1ec 6307 "18jvcm0vwpg6wwzijvnb92xx78la45kkh71k6l44425krp2vnwm0"))))))
b8d8806b 6308 (home-page "https://www.ctan.org/pkg/pdftex")
fedb80ee
RW
6309 (synopsis "TeX extension for direct creation of PDF")
6310 (description
6311 "This package provides an extension of TeX which can be configured to
6312directly generate PDF documents instead of DVI.")
6313 (license license:gpl2+)))
6314
8bcdc23f 6315(define texlive-texmf
0aa34e82
AE
6316 (package
6317 (name "texlive-texmf")
3e1ebaab 6318 (version "20180414")
0aa34e82
AE
6319 (source texlive-texmf-src)
6320 (build-system gnu-build-system)
6321 (inputs
6322 `(("texlive-bin" ,texlive-bin)
6323 ("lua" ,lua)
6324 ("perl" ,perl)
6325 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
6326 ("ruby" ,ruby)
6327 ("tcsh" ,tcsh)))
6328 (arguments
6329 `(#:modules ((guix build gnu-build-system)
6330 (guix build utils)
6331 (srfi srfi-26))
a348af40
LC
6332
6333 ;; This package takes 4 GiB, which we can't afford to distribute from
6334 ;; our servers.
6335 #:substitutable? #f
6336
0aa34e82 6337 #:phases
4a6635f3
AE
6338 (modify-phases (map (cut assq <> %standard-phases)
6339 '(set-paths unpack patch-source-shebangs))
977403fe
RW
6340 (add-after 'unpack 'unset-environment-variables
6341 (lambda _
6342 (unsetenv "TEXMF")
6343 (unsetenv "TEXMFCNF")
6344 #t))
4a6635f3
AE
6345 (add-after 'patch-source-shebangs 'install
6346 (lambda* (#:key outputs #:allow-other-keys)
6347 (let ((share (string-append (assoc-ref outputs "out") "/share")))
6348 (mkdir-p share)
286eedec 6349 (invoke "mv" "texmf-dist" share))))
4a6635f3
AE
6350 (add-after 'install 'texmf-config
6351 (lambda* (#:key inputs outputs #:allow-other-keys)
6352 (let* ((out (assoc-ref outputs "out"))
6353 (share (string-append out "/share"))
6354 (texmfroot (string-append share "/texmf-dist/web2c"))
6355 (texmfcnf (string-append texmfroot "/texmf.cnf"))
6356 (texlive-bin (assoc-ref inputs "texlive-bin"))
6357 (texbin (string-append texlive-bin "/bin"))
6358 (tlpkg (string-append texlive-bin "/share/tlpkg")))
6359 ;; Register SHARE as TEXMFROOT in texmf.cnf.
6360 (substitute* texmfcnf
6361 (("TEXMFROOT = \\$SELFAUTOPARENT")
2d634d9b
FB
6362 (string-append "TEXMFROOT = " share))
6363 (("TEXMFLOCAL = \\$SELFAUTOGRANDPARENT/texmf-local")
6364 "TEXMFLOCAL = $SELFAUTODIR/share/texmf-local")
6365 (("!!\\$TEXMFLOCAL") "$TEXMFLOCAL"))
4a6635f3
AE
6366 ;; Register paths in texmfcnf.lua, needed for context.
6367 (substitute* (string-append texmfroot "/texmfcnf.lua")
6368 (("selfautodir:") out)
6369 (("selfautoparent:") (string-append share "/")))
6370 ;; Set path to TeXLive Perl modules
6371 (setenv "PERL5LIB"
6372 (string-append (getenv "PERL5LIB") ":" tlpkg))
6373 ;; Configure the texmf-dist tree; inspired from
6374 ;; http://slackbuilds.org/repository/13.37/office/texlive/
6375 (setenv "PATH" (string-append (getenv "PATH") ":" texbin))
6376 (setenv "TEXMFCNF" texmfroot)
286eedec
MW
6377 (invoke "updmap-sys" "--nohash" "--syncwithtrees")
6378 (invoke "mktexlsr")
0371132c 6379 (invoke "fmtutil-sys" "--all")))))))
7a15a68f 6380 (properties `((max-silent-time . 9600))) ; don't time out while grafting
0aa34e82 6381 (synopsis "TeX Live, a package of the TeX typesetting system")
eb0119ef
AE
6382 (description
6383 "TeX Live provides a comprehensive TeX document production system.
6384It includes all the major TeX-related programs, macro packages, and fonts
6385that are free software, including support for many languages around the
0aa34e82
AE
6386world.
6387
6388This package contains the complete tree of texmf-dist data.")
132e14b4
EF
6389 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6390 (home-page "https://www.tug.org/texlive/")))
0aa34e82
AE
6391
6392(define-public texlive
6393 (package
6394 (name "texlive")
3e1ebaab 6395 (version "20180414")
0aa34e82
AE
6396 (source #f)
6397 (build-system trivial-build-system)
6398 (inputs `(("bash" ,bash) ; for wrap-program
6399 ("texlive-bin" ,texlive-bin)
6400 ("texlive-texmf" ,texlive-texmf)))
2d634d9b
FB
6401 (native-search-paths
6402 (list (search-path-specification
6403 (variable "TEXMFLOCAL")
6404 (files '("share/texmf-local")))))
0aa34e82
AE
6405 (arguments
6406 `(#:modules ((guix build utils))
6407 #:builder
6408 ;; Build the union of texlive-bin and texlive-texmf, but take the
6409 ;; conflicting subdirectory share/texmf-dist from texlive-texmf.
6410 (begin
6411 (use-modules (guix build utils))
6412 (let ((out (assoc-ref %outputs "out"))
6413 (bin (assoc-ref %build-inputs "texlive-bin"))
6414 (texmf (assoc-ref %build-inputs "texlive-texmf"))
6415 (bash (assoc-ref %build-inputs "bash")))
6416 (mkdir out)
6417 (with-directory-excursion out
6418 (for-each
6419 (lambda (name)
6420 (symlink (string-append bin "/" name) name))
6421 '("include" "lib"))
6422 (mkdir "bin")
6423 (with-directory-excursion "bin"
6424 (setenv "PATH" (string-append bash "/bin"))
6425 (for-each
6426 (lambda (name)
6427 (symlink name (basename name))
6428 (wrap-program
6429 (basename name)
6430 `("TEXMFCNF" =
6431 (,(string-append texmf "/share/texmf-dist/web2c")))))
6432 (find-files (string-append bin "/bin/") "")))
6433 (mkdir "share")
6434 (with-directory-excursion "share"
6435 (for-each
6436 (lambda (name)
6437 (symlink (string-append bin "/share/" name) name))
6438 '("info" "man" "tlpkg"))
6439 (for-each
6440 (lambda (name)
6441 (symlink (string-append texmf "/share/" name) name))
e3cfef22
MW
6442 '("texmf-dist" "texmf-var"))))
6443 #t))))
0aa34e82
AE
6444 (synopsis "TeX Live, a package of the TeX typesetting system")
6445 (description
6446 "TeX Live provides a comprehensive TeX document production system.
6447It includes all the major TeX-related programs, macro packages, and fonts
6448that are free software, including support for many languages around the
6449world.
6450
6451This package contains the complete TeX Live distribution.")
132e14b4
EF
6452 (license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
6453 (home-page "https://www.tug.org/texlive/")))
231eae53 6454
ebcf74da
RW
6455(define-public perl-text-bibtex
6456 (package
6457 (name "perl-text-bibtex")
a2460e0f 6458 (version "0.85")
ebcf74da
RW
6459 (source
6460 (origin
6461 (method url-fetch)
6462 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/Text-BibTeX-"
6463 version ".tar.gz"))
6464 (sha256
6465 (base32
a2460e0f 6466 "036kxgbn1jf70pfm2lmjlzjwnhbkd888fp5lyvmkjpdd15gla18h"))))
ebcf74da
RW
6467 (build-system perl-build-system)
6468 (arguments
6469 `(#:phases
6470 (modify-phases %standard-phases
6471 (add-after 'unpack 'add-output-directory-to-rpath
6472 (lambda* (#:key outputs #:allow-other-keys)
6473 (substitute* "inc/MyBuilder.pm"
6474 (("-Lbtparse" line)
6475 (string-append "-Wl,-rpath="
6476 (assoc-ref outputs "out") "/lib " line)))
6477 #t))
6478 (add-after 'unpack 'install-libraries-to-/lib
6479 (lambda* (#:key outputs #:allow-other-keys)
6480 (substitute* "Build.PL"
6481 (("lib64") "lib"))
6482 #t)))))
6483 (native-inputs
6484 `(("perl-capture-tiny" ,perl-capture-tiny)
6485 ("perl-config-autoconf" ,perl-config-autoconf)
6486 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6487 ("perl-module-build" ,perl-module-build)))
9aba9b12 6488 (home-page "https://metacpan.org/release/Text-BibTeX")
ebcf74da
RW
6489 (synopsis "Interface to read and parse BibTeX files")
6490 (description "@code{Text::BibTeX} is a Perl library for reading, parsing,
6491and processing BibTeX files. @code{Text::BibTeX} gives you access to the data
6492at many different levels: you may work with BibTeX entries as simple field to
6493string mappings, or get at the original form of the data as a list of simple
6494values (strings, macros, or numbers) pasted together.")
2f3108ad 6495 (license license:perl-license)))
ebcf74da 6496
d4000680
RW
6497(define-public biber
6498 (package
1335167a 6499 (name "biber")
41a01087 6500 (version "2.12")
d4000680 6501 (source (origin
41a01087
JL
6502 (method git-fetch)
6503 (uri (git-reference
6504 (url "https://github.com/plk/biber/")
6505 (commit (string-append "v" version))))
6506 (file-name (git-file-name name version))
6507 ;; TODO: Patch awaiting inclusion upstream (see:
6508 ;; https://github.com/plk/biber/issues/239).
6509 (patches (search-patches "biber-fix-encoding-write.patch"))
d4000680
RW
6510 (sha256
6511 (base32
41a01087 6512 "1g1hi6zvf2hmrjly1sidjaxy5440gfqm4p7p3n7kayshnjsmlskx"))))
d4000680
RW
6513 (build-system perl-build-system)
6514 (arguments
6515 `(#:phases
6516 (modify-phases %standard-phases
6517 (add-after 'install 'wrap-programs
6518 (lambda* (#:key outputs #:allow-other-keys)
6519 (let* ((out (assoc-ref outputs "out"))
6520 (perl5lib (getenv "PERL5LIB")))
6521 (wrap-program (string-append out "/bin/biber")
6522 `("PERL5LIB" ":" prefix
6523 (,(string-append perl5lib ":" out
6524 "/lib/perl5/site_perl")))))
6525 #t)))))
6526 (inputs
6527 `(("perl-autovivification" ,perl-autovivification)
6528 ("perl-class-accessor" ,perl-class-accessor)
6529 ("perl-data-dump" ,perl-data-dump)
6530 ("perl-data-compare" ,perl-data-compare)
6531 ("perl-data-uniqid" ,perl-data-uniqid)
6532 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
6533 ("perl-datetime-calendar-julian" ,perl-datetime-calendar-julian)
41a01087 6534 ("perl-file-slurper" ,perl-file-slurper)
d4000680
RW
6535 ("perl-ipc-cmd" ,perl-ipc-cmd)
6536 ("perl-ipc-run3" ,perl-ipc-run3)
6537 ("perl-list-allutils" ,perl-list-allutils)
6538 ("perl-list-moreutils" ,perl-list-moreutils)
6539 ("perl-mozilla-ca" ,perl-mozilla-ca)
6540 ("perl-regexp-common" ,perl-regexp-common)
6541 ("perl-log-log4perl" ,perl-log-log4perl)
6542 ;; We cannot use perl-unicode-collate here, because otherwise the
6543 ;; hardcoded hashes in the tests would differ. See
6544 ;; https://mail-archive.com/debian-bugs-dist@lists.debian.org/msg1469249.html
6545 ;;("perl-unicode-collate" ,perl-unicode-collate)
6546 ("perl-unicode-normalize" ,perl-unicode-normalize)
6547 ("perl-unicode-linebreak" ,perl-unicode-linebreak)
6548 ("perl-encode-eucjpascii" ,perl-encode-eucjpascii)
6549 ("perl-encode-jis2k" ,perl-encode-jis2k)
6550 ("perl-encode-hanextra" ,perl-encode-hanextra)
6551 ("perl-xml-libxml" ,perl-xml-libxml)
6552 ("perl-xml-libxml-simple" ,perl-xml-libxml-simple)
6553 ("perl-xml-libxslt" ,perl-xml-libxslt)
6554 ("perl-xml-writer" ,perl-xml-writer)
6555 ("perl-sort-key" ,perl-sort-key)
6556 ("perl-text-csv" ,perl-text-csv)
6557 ("perl-text-csv-xs" ,perl-text-csv-xs)
6558 ("perl-text-roman" ,perl-text-roman)
6559 ("perl-uri" ,perl-uri)
6560 ("perl-text-bibtex" ,perl-text-bibtex)
6561 ("perl-libwww" ,perl-libwww)
6562 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
6563 ("perl-business-isbn" ,perl-business-isbn)
6564 ("perl-business-issn" ,perl-business-issn)
6565 ("perl-business-ismn" ,perl-business-ismn)
6566 ("perl-lingua-translit" ,perl-lingua-translit)))
6567 (native-inputs
6568 `(("perl-config-autoconf" ,perl-config-autoconf)
6569 ("perl-extutils-libbuilder" ,perl-extutils-libbuilder)
6570 ("perl-module-build" ,perl-module-build)
6571 ;; for tests
6572 ("perl-file-which" ,perl-file-which)
6573 ("perl-test-more" ,perl-test-most) ; FIXME: "more" would be sufficient
6574 ("perl-test-differences" ,perl-test-differences)))
6575 (home-page "http://biblatex-biber.sourceforge.net/")
6576 (synopsis "Backend for the BibLaTeX citation management tool")
6577 (description "Biber is a BibTeX replacement for users of biblatex. Among
6578other things it comes with full Unicode support.")
6579 (license license:artistic2.0)))
6580
231eae53
LC
6581(define-public rubber
6582 (package
6583 (name "rubber")
6584 (version "1.1")
6585 (source (origin
6586 (method url-fetch)
6587 (uri (list (string-append "https://launchpad.net/rubber/trunk/"
6588 version "/+download/rubber-"
6589 version ".tar.gz")
6590 (string-append "http://ebeffara.free.fr/pub/rubber-"
6591 version ".tar.gz")))
6592 (sha256
6593 (base32
6594 "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq"))))
6595 (build-system gnu-build-system)
6596 (arguments '(#:tests? #f)) ; no `check' target
6597 (inputs `(("texinfo" ,texinfo)
9bee5d6c 6598 ("python" ,python-2) ; incompatible with Python 3 (print syntax)
231eae53
LC
6599 ("which" ,which)))
6600 (home-page "https://launchpad.net/rubber")
35b9e423 6601 (synopsis "Wrapper for LaTeX and friends")
231eae53
LC
6602 (description
6603 "Rubber is a program whose purpose is to handle all tasks related to the
6604compilation of LaTeX documents. This includes compiling the document itself,
6605of course, enough times so that all references are defined, and running BibTeX
6606to manage bibliographic references. Automatic execution of dvips to produce
6607PostScript documents is also included, as well as usage of pdfLaTeX to produce
6608PDF documents.")
6609 (license license:gpl2+)))
4791876c
RJ
6610
6611(define-public texmaker
6612 (package
6613 (name "texmaker")
585be42f 6614 (version "5.0.3")
4791876c
RJ
6615 (source (origin
6616 (method url-fetch)
6617 (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
6618 version ".tar.bz2"))
6619 (sha256
6620 (base32
585be42f 6621 "0vrj9w5lk3vf6138n5bz8phmy3xp5kv4dq1rgirghcf4hbxdyx30"))))
4791876c
RJ
6622 (build-system gnu-build-system)
6623 (arguments
6624 `(#:phases
6625 (modify-phases %standard-phases
6626 ;; Qt has its own configuration utility.
6627 (replace 'configure
6628 (lambda* (#:key outputs #:allow-other-keys)
6629 (let ((out (assoc-ref outputs "out")))
6c23ed9b
MW
6630 (invoke "qmake"
6631 (string-append "PREFIX=" out)
c36d9725 6632 (string-append "DESKTOPDIR=" out "/share/applications")
6c23ed9b 6633 (string-append "ICONDIR=" out "/share/pixmaps")
c36d9725 6634 (string-append "METAINFODIR=" out "/share/metainfo")
6c23ed9b 6635 "texmaker.pro")))))))
4791876c
RJ
6636 (inputs
6637 `(("poppler-qt5" ,poppler-qt5)
bd917486
TD
6638 ("qtbase" ,qtbase)
6639 ("qtscript" ,qtscript)
6640 ("qtwebkit" ,qtwebkit)
4791876c
RJ
6641 ("zlib" ,zlib)))
6642 (native-inputs
6643 `(("pkg-config" ,pkg-config)))
6644 (home-page "http://www.xm1math.net/texmaker/")
6645 (synopsis "LaTeX editor")
6646 (description "Texmaker is a program that integrates many tools needed to
6647develop documents with LaTeX, in a single application.")
6648 (license license:gpl2+)))
83457fe0 6649
83457fe0
JD
6650(define-public teximpatient
6651 (package
6652 (name "teximpatient")
6653 (version "2.4")
6654 (source (origin
4f2ee8e2 6655 (method url-fetch/tarbomb)
83457fe0
JD
6656 (uri (string-append "mirror://gnu/" name "/" name "-"
6657 version ".tar.gz"))
6658 (sha256
6659 (base32
6660 "0h56w22d99dh4fgld4ssik8ggnmhmrrbnrn1lnxi1zr0miphn1sd"))))
6661 (build-system gnu-build-system)
6662 (arguments
4f2ee8e2
RW
6663 `(#:tests? #f ; there are none
6664 #:phases
83457fe0 6665 (modify-phases %standard-phases
4f2ee8e2
RW
6666 (add-after 'unpack 'fix-packaging-error
6667 (lambda* (#:key inputs #:allow-other-keys)
6668 ;; This file should have been part of the tarball.
6669 (install-file (car
6670 (find-files
6671 (assoc-ref inputs "automake")
6672 "^install-sh$"))
6673 ".")
6674 ;; Remove generated file.
6675 (delete-file "book.pdf")
6676 #t)))))
83457fe0 6677 (native-inputs
4f2ee8e2
RW
6678 `(("texlive" ,(texlive-union (list texlive-latex-amsfonts
6679 texlive-fonts-amsfonts
6680 texlive-fonts-adobe-palatino
6681 texlive-fonts-adobe-zapfding
6682 texlive-fonts-knuth-lib
6683 texlive-fonts-mflogo-font
6684 texlive-generic-pdftex)))
83457fe0 6685 ("automake" ,automake)))
6fd52309 6686 (home-page "https://www.gnu.org/software/teximpatient/")
83457fe0
JD
6687 (synopsis "Book on TeX, plain TeX and Eplain")
6688 (description "@i{TeX for the Impatient} is a ~350 page book on TeX,
6689plain TeX, and Eplain, originally written by Paul Abrahams, Kathryn Hargreaves,
6690and Karl Berry.")
6691 (license license:fdl1.3+)))
ec40a050
DM
6692
6693(define-public lyx
6694 (package
6695 (name "lyx")
b17c8923 6696 (version "2.3.2-2")
ec40a050 6697 (source (origin
b17c8923 6698 (method url-fetch)
e5a03489
EF
6699 (uri (string-append "http://ftp.lyx.org/pub/lyx/stable/"
6700 (version-major+minor version) ".x/"
b17c8923
RW
6701 name "-" version ".tar.gz"))
6702 (sha256
6703 (base32
6704 "0vr0qwis6rhind6azfa270hqxci7rj8qb1kk5x6lm80mc34nvrqi"))
6705 (modules '((guix build utils)))
6706 (snippet
6707 '(begin
6708 (delete-file-recursively "3rdparty")
6709 #t))))
ec40a050
DM
6710 (build-system cmake-build-system)
6711 (arguments
6712 `(#:configure-flags `("-DLYX_USE_QT=QT5"
6713 "-DLYX_EXTERNAL_BOOST=1"
6714 "-DLYX_INSTALL=1"
6715 "-DLYX_RELEASE=1"
6716 ,(string-append "-DLYX_INSTALL_PREFIX="
6717 (assoc-ref %outputs "out")
6718 ;; Exact name and level is necessary.
e5a03489 6719 "/lyx" ,(version-major+minor version)))
ec40a050
DM
6720 #:phases
6721 (modify-phases %standard-phases
b17c8923
RW
6722 ;; See ;; https://www.lyx.org/trac/changeset/3a123b90af838b08680471d87170c38e56787df9/lyxgit
6723 (add-after 'unpack 'fix-compilation-with-boost-1.69
6724 (lambda _
6725 (substitute* "src/support/FileName.cpp"
6726 (("^template struct boost::detail::crc_table_t.*") ""))
6727 #t))
ec40a050
DM
6728 (add-after 'unpack 'patch-python
6729 (lambda* (#:key inputs #:allow-other-keys)
6730 (substitute* '("src/support/os.cpp")
b17c8923
RW
6731 (("\"python ")
6732 (string-append "\""
6733 (assoc-ref inputs "python")
6734 "/bin/python ")))
ec40a050
DM
6735 #t))
6736 (add-after 'patch-python 'patch-desktop-file
6737 (lambda* (#:key outputs #:allow-other-keys)
6738 (substitute* "lib/lyx.desktop.in"
b17c8923
RW
6739 (("Exec=")
6740 (string-append "Exec="
6741 (assoc-ref outputs "out")
6742 "/")))
ec40a050
DM
6743 #t))
6744 (add-before 'check 'setenv-check
6745 (lambda _
b17c8923
RW
6746 ;; Create missing file that would cause tests to fail.
6747 (with-output-to-file (string-append "../lyx-"
6748 ,version
6749 "/src/tests/check_layout.cmake")
6750 (const #t))
e5a03489
EF
6751 (setenv (string-append "LYX_DIR_"
6752 (string-join
6753 (string-split
6754 ,(version-major+minor version) #\-)) "x")
6755 (string-append (getcwd) "/../lyx-" ,version "/lib"))
ec40a050
DM
6756 #t))
6757 (add-after 'install 'install-symlinks
6758 (lambda* (#:key outputs #:allow-other-keys)
6759 (let ((out (assoc-ref outputs "out")))
6760 (mkdir-p (string-append out "/bin"))
e5a03489
EF
6761 (symlink (string-append "../lyx" ,(version-major+minor version)
6762 "/bin/lyx" ,(version-major+minor version))
6763 (string-append out "/bin/lyx" ,(version-major+minor version)))
ec40a050
DM
6764 #t))))))
6765 (inputs
6766 `(("boost" ,boost)
b17c8923 6767 ("hunspell" ,hunspell) ; Note: Could also use aspell instead.
ec40a050 6768 ("libx11" ,libx11)
b17c8923
RW
6769 ("mythes" ,mythes)
6770 ("python" ,python-2)
ec40a050
DM
6771 ("qtbase" ,qtbase)
6772 ("qtsvg" ,qtsvg)
6773 ("zlib" ,zlib)))
6774 (propagated-inputs
b17c8923
RW
6775 `(("texlive" ,(texlive-union (list texlive-fonts-ec)))))
6776 ;; FIXME: Python 3.7.0 cannot be used because the test infrastructure
6777 ;; "requires a bytes-like object, not 'str'". This may be fixed with
6778 ;; upgrades to Python.
ec40a050 6779 (native-inputs
b17c8923 6780 `(("python" ,python-2)
ec40a050
DM
6781 ("pkg-config" ,pkg-config)
6782 ("bc" ,bc)))
8960b2e6 6783 (home-page "https://www.lyx.org/")
ec40a050
DM
6784 (synopsis "Document preparation system with GUI")
6785 (description "LyX is a document preparation system. It excels at letting
6786you create complex technical and scientific articles with mathematics,
6787cross-references, bibliographies, indexes, etc. It is very good for working
6788with documents of any length in which the usual processing abilities are
6789required: automatic sectioning and pagination, spell checking and so forth.")
6790 (license license:gpl2+)))
7d50dff3
PN
6791
6792(define-public texlive-latex-media9
6793 (package
6794 (name "texlive-latex-media9")
6795 (version (number->string %texlive-revision))
6796 (source (origin
6797 (method svn-fetch)
6798 (uri (svn-reference
6799 (url (string-append "svn://www.tug.org/texlive/tags/"
6800 %texlive-tag "/Master/texmf-dist/"
6801 "/tex/latex/media9"))
6802 (revision %texlive-revision)))
6803 (file-name (string-append name "-" version "-checkout"))
6804 (sha256
6805 (base32
d4d9a1ec 6806 "0lhb2h5hxjq9alpk4r3gvg21pwyifs4ah6hqzp92k55mkp1xv73j"))))
7d50dff3
PN
6807 (build-system trivial-build-system)
6808 (arguments
6809 `(#:modules ((guix build utils))
6810 #:builder
6811 (begin
6812 (use-modules (guix build utils))
6813 (let ((target (string-append (assoc-ref %outputs "out")
6814 "/share/texmf-dist/tex/latex/media9")))
6815 (mkdir-p target)
6816 (copy-recursively (assoc-ref %build-inputs "source") target)
6817 #t))))
6818 (home-page "https://www.ctan.org/pkg/media9")
6819 (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility")
6820 (description
6821 "The package provides an interface to embed interactive Flash (SWF) and 3D
6822objects (Adobe U3D & PRC), as well as video and sound files or streams in the
6823popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X
6824compatibility. Playback of multimedia files uses the built-in Flash Player of
6825Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player
6826supports the efficient H.264 codec for video compression.
6827
6828The package is based on the RichMedia Annotation, an Adobe addition to the PDF
6829specification. It replaces the now obsolete @code{movie15} package.")
6830 (license license:lppl)))
288c8c97
PN
6831
6832(define-public texlive-latex-ocgx2
6833 (package
6834 (name "texlive-latex-ocgx2")
6835 (version (number->string %texlive-revision))
6836 (source (origin
6837 (method svn-fetch)
6838 (uri (svn-reference
6839 (url (string-append "svn://www.tug.org/texlive/tags/"
6840 %texlive-tag "/Master/texmf-dist/"
6841 "/tex/latex/ocgx2"))
6842 (revision %texlive-revision)))
6843 (file-name (string-append name "-" version "-checkout"))
6844 (sha256
6845 (base32
d4d9a1ec 6846 "0zp00jg058djx8xp0xqwas92y3j97clkyd8z6pqr890yqy06myqb"))))
288c8c97
PN
6847 (build-system trivial-build-system)
6848 (arguments
6849 `(#:modules ((guix build utils))
6850 #:builder
6851 (begin
6852 (use-modules (guix build utils))
6853 (let ((target (string-append (assoc-ref %outputs "out")
6854 "/share/texmf-dist/tex/latex/ogcx2")))
6855 (mkdir-p target)
6856 (copy-recursively (assoc-ref %build-inputs "source") target)
6857 #t))))
6858 (home-page "https://www.ctan.org/pkg/ocgx2")
6859 (synopsis "Provide OCG (Optional Content Groups) support within a PDF document")
6860 (description
6861 "This package provides OCG (Optional Content Groups) support within a PDF
6862document.
6863
6864It re-implements the functionality of the @code{ocg}, @code{ocgx}, and
6865@code{ocg-p} packages and adds support for all known engines and back-ends
6866including:
6867
6868@itemize
6869@item LaTeX → dvips → @code{ps2pdf}/Distiller
6870@item (Xe)LaTeX(x) → @code{dvipdfmx}
6871@item pdfLaTeX and LuaLaTeX .
6872@end itemize
6873
6874It also ensures compatibility with the @code{media9} and @code{animate} packages.")
6875 (license license:lppl)))
b718793e
PN
6876
6877(define-public texlive-latex-ms
6878 (package
6879 (name "texlive-latex-ms")
6880 (version (number->string %texlive-revision))
6881 (source (origin
6882 (method svn-fetch)
6883 (uri (texlive-ref "latex" "ms"))
6884 (file-name (string-append name "-" version "-checkout"))
6885 (sha256
6886 (base32
6887 "0m4wx3yjb5al1qsv995z8fii8xxy96mcfihbnlx43lpgayiwz35s"))))
6888 (build-system texlive-build-system)
6889 (arguments
6890 '(#:tex-directory "latex/ms"
6891 #:tex-format "latex"))
6892 (home-page "https://ctan.org/pkg/ms")
6893 (synopsis "Various LATEX packages by Martin Schröder")
6894 (description
6895 "A bundle of LATEX packages by Martin Schröder; the collection comprises:
6896
6897@itemize
6898@item @command{count1to}, make use of fixed TEX counters;
6899@item @command{everysel}, set commands to execute every time a font is selected;
6900@item @command{everyshi}, set commands to execute whenever a page is shipped out;
6901@item @command{multitoc}, typeset the table of contents in multiple columns;
6902@item @command{prelim2e}, mark typeset pages as preliminary; and
6903@item @command{ragged2e}, typeset ragged text and allow hyphenation.
6904@end itemize\n")
6905 (license license:lppl1.3c+)))
707babdd
PN
6906
6907(define-public texlive-latex-needspace
6908 (package
6909 (name "texlive-latex-needspace")
6910 (version (number->string %texlive-revision))
6911 (source (origin
6912 (method svn-fetch)
6913 (uri (texlive-ref "latex" "needspace"))
6914 (file-name (string-append name "-" version "-checkout"))
6915 (sha256
6916 (base32
6917 "0kw80f5jh4gdpa2ka815abza3gr5z8b929w0745vrlc59pl0017y"))))
6918 (build-system texlive-build-system)
6919 (arguments
6920 '(#:tex-directory "latex/needspace"
6921 #:tex-format "latex"))
6922 (inputs
6923 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6924 (home-page "https://www.ctan.org/pkg/needspace")
6925 (synopsis "Insert pagebreak if not enough space")
6926 (description
6927 "Provides commands to disable pagebreaking within a given vertical
6928space. If there is not enough space between the command and the bottom of the
6929page, a new page will be started.")
6930 (license license:lppl)))
0e73c11b 6931
73635e3f
RW
6932(define-public texlive-latex-changepage
6933 (package
6934 (name "texlive-latex-changepage")
6935 (version (number->string %texlive-revision))
6936 (source
6937 (origin
6938 (method svn-fetch)
6939 (uri (texlive-ref "latex" "changepage"))
6940 (sha256
6941 (base32
6942 "1rpw8xg5p4jsyh236jma9dz3l29wjx4062f154b3wak5yjcxyxyb"))))
6943 (build-system texlive-build-system)
6944 (arguments
6945 '(#:tex-directory "latex/changepage"
6946 #:tex-format "latex"))
6947 (inputs
6948 `(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
6949 (home-page "https://www.ctan.org/pkg/changepage")
6950 (synopsis "Margin adjustment and detection of odd/even pages")
6951 (description
6952 "The package provides commands to change the page layout in the middle of
6953a document, and to robustly check for typesetting on odd or even pages.
6954Instructions for use are at the end of the file. The package is an extraction
6955of code from the @code{memoir} class, whose user interface it shares.")
6956 (license license:lppl1.3+)))
6957
0e73c11b
PN
6958(define-public texlive-latex-eukdate
6959 (package
6960 (name "texlive-latex-eukdate")
6961 (version (number->string %texlive-revision))
6962 (source
6963 (origin
6964 (method svn-fetch)
6965 (uri (svn-reference
6966 (url (string-append "svn://www.tug.org/texlive/tags/"
6967 %texlive-tag "/Master/texmf-dist/"
6968 "/tex/latex/eukdate"))
6969 (revision %texlive-revision)))
6970 (file-name (string-append name "-" version "-checkout"))
6971 (sha256
6972 (base32
6973 "18xan116l8w47v560bkw6nbhkrml7g04xrlzk3jrpc7qsyf3n5fz"))))
6974 (build-system trivial-build-system)
6975 (arguments
6976 `(#:modules ((guix build utils))
6977 #:builder
6978 (begin
6979 (use-modules (guix build utils))
6980 (let ((target (string-append (assoc-ref %outputs "out")
6981 "/share/texmf-dist/tex/latex/eukdate")))
6982 (mkdir-p target)
6983 (copy-recursively (assoc-ref %build-inputs "source") target)
6984 #t))))
6985 (home-page "https://www.ctan.org/pkg/eukdate")
6986 (synopsis "UK format dates, with weekday")
6987 (description
6988 "The package is used to change the format of @code{\\today}’s date,
6989including the weekday, e.g., \"Saturday, 26 June 2008\", the 'UK format', which
6990is preferred in many parts of the world, as distinct from that which is used in
6991@code{\\maketitle} of the article class, \"June 26, 2008\", the 'US format'.")
6992 (license license:lppl)))
910d67fb
PN
6993
6994(define-public texlive-generic-ulem
6995 (package
6996 (name "texlive-generic-ulem")
6997 (version (number->string %texlive-revision))
6998 (source
6999 (origin
7000 (method svn-fetch)
7001 (uri (svn-reference
7002 (url (string-append "svn://www.tug.org/texlive/tags/"
7003 %texlive-tag "/Master/texmf-dist/"
7004 "/tex/generic/ulem"))
7005 (revision %texlive-revision)))
7006 (file-name (string-append name "-" version "-checkout"))
7007 (sha256
7008 (base32
7009 "1rzdniqq9zk39w8ch8ylx3ywh2mj87s4ivchrsk2b8nx06jyn797"))))
7010 (build-system trivial-build-system)
7011 (arguments
7012 `(#:modules ((guix build utils))
7013 #:builder
7014 (begin
7015 (use-modules (guix build utils))
7016 (let ((target (string-append (assoc-ref %outputs "out")
7017 "/share/texmf-dist/tex/generic/ulem")))
7018 (mkdir-p target)
7019 (copy-recursively (assoc-ref %build-inputs "source") target)
7020 #t))))
7021 (home-page "https://www.ctan.org/pkg/ulem")
7022 (synopsis "Underline text in TeX")
7023 (description
7024 "The package provides an @code{\\ul} (underline) command which will break
7025over line ends; this technique may be used to replace @code{\\em} (both in that
7026form and as the @code{\\emph} command), so as to make output look as if it comes
7027from a typewriter. The package also offers double and wavy underlining, and
7028striking out (line through words) and crossing out (/// over words).")
7029 (license license:lppl1.3c+)))
17ef5f1f
PN
7030
7031(define-public texlive-latex-pgf
7032 (package
7033 (name "texlive-latex-pgf")
7034 (version (number->string %texlive-revision))
7035 (source
7036 (origin
7037 (method svn-fetch)
7038 (uri (svn-reference
7039 (url (string-append "svn://www.tug.org/texlive/tags/"
7040 %texlive-tag "/Master/texmf-dist/"
7041 "/tex/latex/pgf"))
7042 (revision %texlive-revision)))
7043 (file-name (string-append name "-" version "-checkout"))
7044 (sha256
7045 (base32
7046 "1dq8p10pz8wn0vx412m7d7d5gj1syxly3yqdqvf7lv2xl8zndn5h"))))
7047 (build-system trivial-build-system)
7048 (native-inputs
7049 `(("texlive-latex-pgf-generic"
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/generic/pgf"))
7056 (revision %texlive-revision)))
7057 (file-name (string-append "texlive-latex-pgf-generic" version "-checkout"))
7058 (sha256
7059 (base32
7060 "0xkxw26sjzr5npjpzpr28yygwdbhzpdd0hsk80gjpidhcxmz393i"))))))
0fc71e4b
RW
7061 (propagated-inputs
7062 `(("texlive-latex-xcolor" ,texlive-latex-xcolor)))
17ef5f1f
PN
7063 (arguments
7064 `(#:modules ((guix build utils))
7065 #:builder
7066 (begin
7067 (use-modules (guix build utils))
7068 (let ((target-generic (string-append (assoc-ref %outputs "out")
7069 "/share/texmf-dist/tex/generic/pgf"))
7070 (target-latex (string-append (assoc-ref %outputs "out")
7071 "/share/texmf-dist/tex/latex/pgf")))
7072 (mkdir-p target-generic)
7073 (mkdir-p target-latex)
7074 (copy-recursively (assoc-ref %build-inputs "texlive-latex-pgf-generic") target-generic)
7075 (copy-recursively (assoc-ref %build-inputs "source") target-latex)
7076 #t))))
7077 (home-page "https://www.ctan.org/pkg/tikz")
7078 (synopsis "Create PostScript and PDF graphics in TeX")
7079 (description
7080 "PGF is a macro package for creating graphics. It is platform- and
7081format-independent and works together with the most important TeX backend
7082drivers, including pdfTeX and dvips. It comes with a user-friendly syntax layer
7083called TikZ.
7084
7085Its usage is similar to pstricks and the standard picture environment. PGF
7086works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt. Unlike pstricks, it can
7087produce either PostScript or PDF output.")
7088 (license license:lppl1.3c+)))
e7b2937d
PN
7089
7090(define-public texlive-latex-koma-script
7091 (package
7092 (name "texlive-latex-koma-script")
7093 (version (number->string %texlive-revision))
7094 (source (origin
7095 (method svn-fetch)
7096 (uri (svn-reference
7097 (url (string-append "svn://www.tug.org/texlive/tags/"
7098 %texlive-tag "/Master/texmf-dist/"
7099 "/tex/latex/koma-script"))
7100 (revision %texlive-revision)))
7101 (file-name (string-append name "-" version "-checkout"))
7102 (sha256
7103 (base32
d4d9a1ec 7104 "0nqwf0sr4mf3v9gqa6apv6ml2xhcdwax0vgyf12a672g7rpdyvgm"))))
e7b2937d
PN
7105 (build-system trivial-build-system)
7106 (arguments
7107 `(#:modules ((guix build utils)
7108 (ice-9 match))
7109 #:builder
7110 (begin
7111 (use-modules (guix build utils)
7112 (ice-9 match))
7113 (let ((root (string-append (assoc-ref %outputs "out")
7114 "/share/texmf-dist/"))
7115 (pkgs '(("source" . "tex/latex/koma-script"))))
7116 (for-each (match-lambda
7117 ((pkg . dir)
7118 (let ((target (string-append root dir)))
7119 (mkdir-p target)
7120 (copy-recursively (assoc-ref %build-inputs pkg)
7121 target))))
7122 pkgs)
7123 #t))))
7124 (home-page "https://www.ctan.org/pkg/koma-script")
7125 (synopsis "Bundle of versatile classes and packages")
7126 (description
7127 "The KOMA-Script bundle provides replacements for the article, report, and
7128book classes with emphasis on typography and versatility. There is also a
7129letter class.
7130
7131The bundle also offers:
7132
7133@itemize
7134@item a package for calculating type areas in the way laid down by the
7135typographer Jan Tschichold,
7136@item packages for easily changing and defining page styles,
7137@item a package scrdate for getting not only the current date but also the name
7138of the day, and
7139@item a package scrtime for getting the current time.
7140@end itemize
7141
7142All these packages may be used not only with KOMA-Script classes but also with
7143the standard classes.
7144
7145Since every package has its own version number, the version number quoted only
7146refers to the version of scrbook, scrreprt, scrartcl, scrlttr2 and
7147typearea (which are the main parts of the bundle).")
7148 (license license:lppl1.3+)))
893fbf12
RW
7149
7150(define-public texlive-generic-listofitems
7151 (package
7152 (name "texlive-generic-listofitems")
7153 (version (number->string %texlive-revision))
7154 (source (origin
7155 (method svn-fetch)
7156 (uri (svn-reference
7157 (url (string-append "svn://www.tug.org/texlive/tags/"
7158 %texlive-tag "/Master/texmf-dist/"
7159 "/tex/generic/listofitems"))
7160 (revision %texlive-revision)))
7161 (file-name (string-append name "-" version "-checkout"))
7162 (sha256
7163 (base32
d4d9a1ec 7164 "0hs28fc0v2l92ad9las9b8xcckyrdrwmyhcx1yzmbr6s7s6nvsx8"))))
893fbf12
RW
7165 (build-system trivial-build-system)
7166 (arguments
7167 `(#:modules ((guix build utils))
7168 #:builder
7169 (begin
7170 (use-modules (guix build utils))
7171 (let ((target (string-append (assoc-ref %outputs "out")
7172 "/share/texmf-dist/tex/generic/listofitems")))
7173 (mkdir-p target)
7174 (copy-recursively (assoc-ref %build-inputs "source") target)
7175 #t))))
7176 (home-page "https://www.ctan.org/pkg/listofitems")
88868575 7177 (synopsis "Grab items in lists using user-specified separation character")
893fbf12
RW
7178 (description
7179 "This package allows one to capture all the items of a list, for which
7180the parsing character has been selected by the user, and to access any of
7181these items with a simple syntax.")
7182 (license license:lppl1.3c+)))
1d0669f4
RW
7183
7184(define-public texlive-latex-readarray
7185 (package
7186 (name "texlive-latex-readarray")
7187 (version (number->string %texlive-revision))
7188 (source (origin
7189 (method svn-fetch)
7190 (uri (svn-reference
7191 (url (string-append "svn://www.tug.org/texlive/tags/"
7192 %texlive-tag "/Master/texmf-dist/"
7193 "/tex/latex/readarray"))
7194 (revision %texlive-revision)))
7195 (file-name (string-append name "-" version "-checkout"))
7196 (sha256
7197 (base32
7198 "0c53k180ivn1n7fz3ngvd2w1i5dw3kxml0n64vhki88xsylz7lxp"))))
7199 (build-system trivial-build-system)
7200 (arguments
7201 `(#:modules ((guix build utils))
7202 #:builder
7203 (begin
7204 (use-modules (guix build utils))
7205 (let ((target (string-append (assoc-ref %outputs "out")
7206 "/share/texmf-dist/tex/latex/readarray")))
7207 (mkdir-p target)
7208 (copy-recursively (assoc-ref %build-inputs "source") target)
7209 #t))))
7210 (propagated-inputs
7211 `(("texlive-generic-listofitems" ,texlive-generic-listofitems)))
7212 (home-page "https://www.ctan.org/pkg/readarray")
7213 (synopsis "Read, store and recall array-formatted data")
7214 (description
7215 "This package allows the user to input formatted data into elements of a
72162-D or 3-D array and to recall that data at will by individual cell number.
7217The data can be but need not be numerical in nature. It can be, for example,
7218formatted text.")
7219 (license license:lppl1.3)))
f50f343e
RW
7220
7221(define-public texlive-latex-verbatimbox
7222 (package
7223 (name "texlive-latex-verbatimbox")
7224 (version (number->string %texlive-revision))
7225 (source (origin
7226 (method svn-fetch)
7227 (uri (svn-reference
7228 (url (string-append "svn://www.tug.org/texlive/tags/"
7229 %texlive-tag "/Master/texmf-dist/"
7230 "/tex/latex/verbatimbox"))
7231 (revision %texlive-revision)))
7232 (file-name (string-append name "-" version "-checkout"))
7233 (sha256
7234 (base32
7235 "0qh1cgvfs463zsi2pjg490gj0mkjfdpfc381j10cbb5la304psna"))))
7236 (build-system trivial-build-system)
7237 (arguments
7238 `(#:modules ((guix build utils))
7239 #:builder
7240 (begin
7241 (use-modules (guix build utils))
7242 (let ((target (string-append (assoc-ref %outputs "out")
7243 "/share/texmf-dist/tex/latex/verbatimbox")))
7244 (mkdir-p target)
7245 (copy-recursively (assoc-ref %build-inputs "source") target)
7246 #t))))
7247 (propagated-inputs
7248 `(("texlive-latex-readarray" ,texlive-latex-readarray)))
7249 (home-page "https://www.ctan.org/pkg/verbatimbox")
7250 (synopsis "Deposit verbatim text in a box")
7251 (description
7252 "The package provides a @code{verbbox} environment to place its contents
7253into a globally available box, or into a box specified by the user. The
7254global box may then be used in a variety of situations (for example, providing
7255a replica of the @code{boxedverbatim} environment itself). A valuable use is
7256in places where the standard @code{verbatim} environment (which is based on a
7257@code{trivlist}) may not appear.")
7258 (license license:lppl1.3+)))
4348a059
RW
7259
7260(define-public texlive-latex-examplep
7261 (package
7262 (name "texlive-latex-examplep")
7263 (version (number->string %texlive-revision))
7264 (source (origin
7265 (method svn-fetch)
7266 (uri (svn-reference
7267 (url (string-append "svn://www.tug.org/texlive/tags/"
7268 %texlive-tag "/Master/texmf-dist/"
7269 "/tex/latex/examplep"))
7270 (revision %texlive-revision)))
7271 (file-name (string-append name "-" version "-checkout"))
7272 (sha256
7273 (base32
7274 "0fsvvmz68ij0zwfzrny6x13d92grxr4ap59lxgah4smbkccd6s27"))))
7275 (build-system trivial-build-system)
7276 (arguments
7277 `(#:modules ((guix build utils))
7278 #:builder
7279 (begin
7280 (use-modules (guix build utils))
7281 (let ((target (string-append (assoc-ref %outputs "out")
7282 "/share/texmf-dist/tex/latex/examplep")))
7283 (mkdir-p target)
7284 (copy-recursively (assoc-ref %build-inputs "source") target)
7285 #t))))
7286 (home-page "https://www.ctan.org/pkg/examplep")
7287 (synopsis "Verbatim phrases and listings in LaTeX")
7288 (description
7289 "Examplep provides sophisticated features for typesetting verbatim source
7290code listings, including the display of the source code and its compiled LaTeX
7291or METAPOST output side-by-side, with automatic width detection and enabled
7292page breaks (in the source), without the need for specifying the source twice.
7293Special care is taken that section, page and footnote numbers do not interfere
7294with the main document. For typesetting short verbatim phrases, a replacement
7295for the @code{\\verb} command is also provided in the package, which can be
7296used inside tables and moving arguments such as footnotes and section
7297titles.")
7298 ;; No version of the GPL is specified.
7299 (license license:gpl3+)))
547ab650
PN
7300
7301(define-public texlive-generic-xypic
7302 (package
7303 (name "texlive-generic-xypic")
7304 (version (number->string %texlive-revision))
7305 (source
7306 (origin
7307 (method svn-fetch)
7308 (uri (svn-reference
7309 (url (string-append "svn://www.tug.org/texlive/tags/"
7310 %texlive-tag "/Master/texmf-dist/"
7311 "/tex/generic/xypic"))
7312 (revision %texlive-revision)))
7313 (file-name (string-append name "-" version "-checkout"))
7314 (sha256
7315 (base32
7316 "1g5cyxwdfznq4lk9zl6fkjkapmhmwd2cm4m5aibxj20qgwnaggfz"))))
7317 (build-system trivial-build-system)
7318 (arguments
7319 `(#:modules ((guix build utils))
7320 #:builder
7321 (begin
7322 (use-modules (guix build utils))
7323 (let ((target (string-append (assoc-ref %outputs "out")
7324 "/share/texmf-dist/tex/generic/xypic")))
7325 (mkdir-p target)
7326 (copy-recursively (assoc-ref %build-inputs "source") target)
7327 #t))))
7328 (home-page "https://www.ctan.org/pkg/xypic")
7329 (synopsis "Flexible diagramming macros for TeX")
7330 (description
7331 "A package for typesetting a variety of graphs and diagrams with TeX.
7332Xy-pic works with most formats (including LaTeX, AMS-LaTeX, AMS-TeX, and plain
7333TeX).")
7334 (license license:gpl3+)))
1d9ce461
PN
7335
7336(define-public texlive-fonts-xypic
7337 (package
7338 (name "texlive-fonts-xypic")
7339 (version (number->string %texlive-revision))
7340 (source (origin
7341 (method svn-fetch)
7342 (uri (svn-reference
7343 (url (string-append "svn://www.tug.org/texlive/tags/"
7344 %texlive-tag "/Master/texmf-dist/"
7345 "/fonts/source/public/xypic"))
7346 (revision %texlive-revision)))
7347 (file-name (string-append name "-" version "-checkout"))
7348 (sha256
7349 (base32
7350 "0p20v1257kwsqnrk98cdhhiz2viv8l3ly4xay4by0an3j37m9xs3"))))
7351 (build-system trivial-build-system)
7352 (arguments
7353 `(#:modules ((guix build utils)
7354 (ice-9 match))
7355 #:builder
7356 (begin
7357 (use-modules (guix build utils)
7358 (ice-9 match))
7359 (let ((root (string-append (assoc-ref %outputs "out")
7360 "/share/texmf-dist/"))
7361 (pkgs '(("source" . "fonts/source/public/xypic")
7362 ("xypic-afm" . "fonts/afm/public/xypic")
7363 ("xypic-type1" . "fonts/type1/public/xypic")
7364 ("xypic-enc" . "fonts/enc/dvips/xypic"))))
7365 (for-each (match-lambda
7366 ((pkg . dir)
7367 (let ((target (string-append root dir)))
7368 (mkdir-p target)
7369 (copy-recursively (assoc-ref %build-inputs pkg)
7370 target))))
7371 pkgs)
7372 #t))))
7373 (native-inputs
7374 `(("xypic-afm"
7375 ,(origin
7376 (method svn-fetch)
7377 (uri (svn-reference
7378 (url (string-append "svn://www.tug.org/texlive/tags/"
7379 %texlive-tag "/Master/texmf-dist/"
7380 "/fonts/afm/public/xypic"))
7381 (revision %texlive-revision)))
7382 (file-name (string-append name "-afm-" version "-checkout"))
7383 (sha256
7384 (base32
7385 "149xdijxp8lw3s0qv2aqxxxyyn748z57dpr596rjvkqdffpnsddh"))))
7386 ("xypic-type1"
7387 ,(origin
7388 (method svn-fetch)
7389 (uri (svn-reference
7390 (url (string-append "svn://www.tug.org/texlive/tags/"
7391 %texlive-tag "/Master/texmf-dist/"
7392 "/fonts/type1/public/xypic"))
7393 (revision %texlive-revision)))
7394 (file-name (string-append name "-type1-" version "-checkout"))
7395 (sha256
7396 (base32
7397 "1bln89wib7g3hcv2jny3qi6jb73k9d2vbgx3wnnjwp3ryg0846if"))))
7398 ("xypic-enc"
7399 ,(origin
7400 (method svn-fetch)
7401 (uri (svn-reference
7402 (url (string-append "svn://www.tug.org/texlive/tags/"
7403 %texlive-tag "/Master/texmf-dist/"
7404 "/fonts/enc/dvips/xypic"))
7405 (revision %texlive-revision)))
7406 (file-name (string-append name "-enc-" version "-checkout"))
7407 (sha256
7408 (base32
7409 "0yi8vms3203l3p5slnhrrlzzp0f0jw77fkcvcaicrz2vmw9z99x7"))))))
7410 (home-page "https://www.ctan.org/pkg/xypic")
7411 (synopsis "Fonts for XY-pic")
7412 (description "This package provides the XY-pic fonts.")
7413 (license license:gpl3+)))
31595689
PN
7414
7415(define-public texlive-bibtex
7416 (package
7417 (name "texlive-bibtex")
7418 (version (number->string %texlive-revision))
7419 (source
7420 (origin
7421 (method svn-fetch)
7422 (uri (svn-reference
7423 (url (string-append "svn://www.tug.org/texlive/tags/"
7424 %texlive-tag "/Master/texmf-dist/"
7425 "/bibtex"))
7426 (revision %texlive-revision)))
7427 (file-name (string-append name "-" version "-checkout"))
7428 (sha256
7429 (base32
d4d9a1ec 7430 "0hnbs0s1znbn32hfcsyijl39z81sdb00jf092a4blqz421qs2mbv"))))
31595689
PN
7431 (build-system trivial-build-system)
7432 (arguments
7433 `(#:modules ((guix build utils))
7434 #:builder
7435 (begin
7436 (use-modules (guix build utils))
7437 (let ((target (string-append (assoc-ref %outputs "out")
7438 "/share/texmf-dist/bibtex")))
7439 (mkdir-p target)
7440 (copy-recursively (assoc-ref %build-inputs "source") target)
7441 #t))))
7442 (home-page "https://www.ctan.org/pkg/bibtex")
7443 (synopsis "Process bibliographies for LaTeX")
7444 (description
7445 "BibTeX allows the user to store his citation data in generic form, while
7446printing citations in a document in the form specified by a BibTeX style, to
7447be specified in the document itself (one often needs a LaTeX citation-style
7448package, such as @command{natbib} as well).")
7449 (license license:knuth)))
744b883e
PN
7450
7451(define-public texlive-fonts-charter
7452 (package
7453 (name "texlive-fonts-charter")
7454 (version (number->string %texlive-revision))
7455 (source (origin
7456 (method svn-fetch)
7457 (uri (svn-reference
7458 (url (string-append "svn://www.tug.org/texlive/tags/"
7459 %texlive-tag "/Master/texmf-dist/"
7460 "/fonts/type1/bitstrea/charter"))
7461 (revision %texlive-revision)))
7462 (file-name (string-append name "-" version "-checkout"))
7463 (sha256
7464 (base32
7465 "0yvib45xxff3jm5270zij4q888pivbc18cqs7lz4pqfhn1am4wnv"))))
7466 (build-system trivial-build-system)
7467 (arguments
7468 `(#:modules ((guix build utils)
7469 (ice-9 match))
7470 #:builder
7471 (begin
7472 (use-modules (guix build utils)
7473 (ice-9 match))
7474 (let ((root (string-append (assoc-ref %outputs "out")
7475 "/share/texmf-dist/"))
7476 (pkgs '(("source" . "fonts/type1/bitstrea/charter")
7477 ("charter-afm" . "fonts/afm/bitstrea/charter")
7478 ("charter-tfm" . "fonts/tfm/bitstrea/charter"))))
7479 (for-each (match-lambda
7480 ((pkg . dir)
7481 (let ((target (string-append root dir)))
7482 (mkdir-p target)
7483 (copy-recursively (assoc-ref %build-inputs pkg)
7484 target))))
7485 pkgs)
7486 #t))))
7487 (native-inputs
7488 `(("charter-afm"
7489 ,(origin
7490 (method svn-fetch)
7491 (uri (svn-reference
7492 (url (string-append "svn://www.tug.org/texlive/tags/"
7493 %texlive-tag "/Master/texmf-dist/"
7494 "/fonts/afm/bitstrea/charter"))
7495 (revision %texlive-revision)))
7496 (file-name (string-append name "-afm-" version "-checkout"))
7497 (sha256
7498 (base32
7499 "02nbkqrlr3vypnzslmr7dxg1353mmc0rl4ynx0s6qbvf313fq76a"))))
7500 ("charter-tfm"
7501 ,(origin
7502 (method svn-fetch)
7503 (uri (svn-reference
7504 (url (string-append "svn://www.tug.org/texlive/tags/"
7505 %texlive-tag "/Master/texmf-dist/"
7506 "/fonts/tfm/bitstrea/charter"))
7507 (revision %texlive-revision)))
7508 (file-name (string-append name "-tfm-" version "-checkout"))
7509 (sha256
7510 (base32
7511 "0j7ci9vprivbhac70aq0z7m23hqcpx1g0i3wp1k0h8ilhimj80xk"))))))
7512 (home-page "https://www.ctan.org/pkg/charter")
7513 (synopsis "Charter fonts for TeX")
7514 (description "A commercial text font donated for the common good. Support
7515for use with LaTeX is available in @code{freenfss}, part of
7516@command{psnfss}. ")
7517 (license (license:non-copyleft (string-append "http://mirrors.ctan.org/"
7518 "fonts/charter/readme.charter")))))
a5bfedb4
PN
7519
7520(define-public texlive-context-base
7521 (package
7522 (name "texlive-context-base")
7523 (version (number->string %texlive-revision))
7524 (source (origin
7525 (method svn-fetch)
7526 (uri (svn-reference
7527 (url (string-append "svn://www.tug.org/texlive/tags/"
7528 %texlive-tag "/Master/texmf-dist/"
7529 "/tex/context/base"))
7530 (revision %texlive-revision)))
7531 (file-name (string-append name "-" version "-checkout"))
7532 (sha256
7533 (base32
d4d9a1ec 7534 "0rlx4qqijms1n64gjx475kvip8l322fh7v17zkmwp1l1g0w3vlyz"))))
a5bfedb4
PN
7535 (build-system trivial-build-system)
7536 (arguments
7537 `(#:modules ((guix build utils))
7538 #:builder
7539 (begin
7540 (use-modules (guix build utils))
7541 (let ((target (string-append (assoc-ref %outputs "out")
7542 "/share/texmf-dist/tex/context/case")))
7543 (mkdir-p target)
7544 (copy-recursively (assoc-ref %build-inputs "source") target)
7545 #t))))
7546 (home-page "https://www.ctan.org/pkg/context")
7547 (synopsis "Full featured, parameter driven macro package for TeX")
7548 (description "A full featured, parameter driven macro package, which fully
7549supports advanced interactive documents. See the ConTeXt garden for a wealth
7550of support information.")
7551 (license license:gpl2+)))
63133706
RW
7552
7553(define-public texlive-latex-beamer
7554 (package
7555 (name "texlive-latex-beamer")
7556 (version (number->string %texlive-revision))
7557 (source (origin
7558 (method svn-fetch)
7559 (uri (svn-reference
7560 (url (string-append "svn://www.tug.org/texlive/tags/"
7561 %texlive-tag "/Master/texmf-dist/"
7562 "/tex/latex/beamer"))
7563 (revision %texlive-revision)))
7564 (file-name (string-append name "-" version "-checkout"))
7565 (sha256
7566 (base32
7567 "09y3qwbj0nckshvg9afgwcv9v3zdif1d7bnpzrggsa1fbr80mgk2"))))
7568 (build-system trivial-build-system)
7569 (outputs '("out" "doc"))
7570 (arguments
7571 `(#:modules ((guix build utils))
7572 #:builder
7573 (begin
7574 (use-modules (guix build utils))
7575 (let ((target (string-append (assoc-ref %outputs "out")
7576 "/share/texmf-dist/tex/latex/beamer"))
7577 (docs (string-append (assoc-ref %outputs "doc")
7578 "/share/texmf-dist/doc/latex/beamer/")))
7579 (mkdir-p target)
7580 (copy-recursively (assoc-ref %build-inputs "source") target)
7581
7582 (mkdir-p docs)
7583 (copy-recursively (assoc-ref %build-inputs "docs") docs)
7584 #t))))
7585 (propagated-inputs
7586 `(("texlive-latex-hyperref" ,texlive-latex-hyperref)
7587 ("texlive-latex-oberdiek" ,texlive-latex-oberdiek)
7588 ("texlive-latex-etoolbox" ,texlive-latex-etoolbox)
7589 ("texlive-latex-pgf" ,texlive-latex-pgf)))
7590 (native-inputs
7591 `(("docs"
7592 ,(origin
7593 (method svn-fetch)
7594 (uri (svn-reference
7595 (url (string-append "svn://www.tug.org/texlive/tags/"
7596 %texlive-tag "/Master/texmf-dist/"
7597 "/doc/latex/beamer"))
7598 (revision %texlive-revision)))
7599 (file-name (string-append name "-" version "-checkout"))
7600 (sha256
7601 (base32
7602 "102b18b9nw9dicqqgjwx0srh1mav8vh9wdvwayn741niza9hac23"))))))
7603 (home-page "https://www.ctan.org/pkg/beamer")
7604 (synopsis "LaTeX class for producing presentations and slides")
7605 (description "The beamer LaTeX class can be used for producing slides.
7606The class works in both PostScript and direct PDF output modes, using the
7607@code{pgf} graphics system for visual effects. Content is created in the
7608@code{frame} environment, and each frame can be made up of a number of slides
7609using a simple notation for specifying material to appear on each slide within
7610a frame. Short versions of title, authors, institute can also be specified as
7611optional parameters. Whole frame graphics are supported by plain frames. The
7612class supports @code{figure} and @code{table} environments, transparency
7613effects, varying slide transitions and animations.")
7614 ;; Code is dual licensed under GPLv2+ or LPPL1.3c+; documentation is
7615 ;; dual-licensed under either FDLv1.3+ or LPPL1.3c+.
7616 (license (list license:lppl1.3c+ license:gpl2+ license:fdl1.3+))))
cafd4d38
RW
7617
7618(define-public texlive-latex-xmpincl
7619 (package
7620 (name "texlive-latex-xmpincl")
7621 (version (number->string %texlive-revision))
7622 (source
7623 (origin
7624 (method svn-fetch)
7625 (uri (texlive-ref "latex" "xmpincl"))
7626 (sha256
7627 (base32
7628 "0lq3dfb4fsw955gjwllnk7cg00ciq5mva64mlpbva6g2jz117734"))))
7629 (build-system texlive-build-system)
7630 (arguments '(#:tex-directory "latex/xmpincl"))
7631 (home-page "http://www.ctan.org/pkg/xmpincl")
7632 (synopsis "Include eXtensible Metadata Platform data in pdfLaTeX")
7633 (description
7634 "The XMP (eXtensible Metadata platform) is a framework to add metadata to
7635digital material to enhance the workflow in publication. The essence is that
7636the metadata is stored in an XML file, and this XML stream is then embedded in
7637the file to which it applies.")
7638 (license license:gpl3+)))
f87dcb4d
RW
7639
7640(define-public texlive-latex-pdfx
7641 (package
7642 (name "texlive-latex-pdfx")
7643 (version (number->string %texlive-revision))
7644 (source
7645 (origin
7646 (method svn-fetch)
7647 (uri (texlive-ref "latex" "pdfx"))
7648 (sha256
7649 (base32
7650 "0ikxg8yzq78hy5b9x13d4nah46d0yvmwlqmdri06pygbx116dcac"))))
7651 (build-system texlive-build-system)
7652 (arguments
7653 '(#:tex-directory "latex/pdfx"
7654 #:phases
7655 (modify-phases %standard-phases
7656 (add-after 'unpack 'fix-encoding
7657 (lambda _
7658 (substitute* "pdfx.dtx"
7659 ((" .+umaczy") "umaczy"))
7660 #t))
7661 (add-before 'install 'install-tex-files
7662 (lambda* (#:key inputs outputs #:allow-other-keys)
7663 (let ((target (string-append (assoc-ref outputs "out")
7664 "/share/texmf-dist/tex/latex/pdfx")))
7665 (mkdir-p target)
7666 (copy-recursively (assoc-ref inputs "texlive-tex-pdfx") target)
7667 ;; Install the generated version in the "install" phase.
7668 (delete-file (string-append target "/pdfx.sty"))
7669 #t))))))
7670 (propagated-inputs
7671 `(("texlive-generic-pdftex" ,texlive-generic-pdftex)))
7672 (native-inputs
7673 `(("texlive-tex-pdfx"
7674 ,(origin
7675 (method svn-fetch)
7676 (uri (svn-reference
7677 (url (string-append "svn://www.tug.org/texlive/tags/"
7678 %texlive-tag "/Master/texmf-dist/"
7679 "/tex/latex/pdfx"))
7680 (revision %texlive-revision)))
7681 (file-name (string-append "texlive-tex-latex-pdfx-" version "-checkout"))
7682 (sha256
7683 (base32
7684 "14j1zsvqc59ims3sk34v6km8db6cimks28y5fcxcr5mi2ykvj4vf"))))))
7685 (home-page "https://www.ctan.org/pkg/pdfx")
7686 (synopsis "PDF/X and PDF/A support for pdfTeX, LuaTeX and XeTeX")
7687 (description
7688 "This package helps LaTeX users to create PDF/X, PFD/A and other
7689standards-compliant PDF documents with pdfTeX, LuaTeX and XeTeX.")
7690 (license license:lppl1.2+)))