gnu: pdfarranger: Update to 1.7.0.
[jackhill/guix/guix.git] / gnu / packages / pdf.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2015, 2016 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
4 ;;; Copyright © 2014, 2015, 2016, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
6 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
7 ;;; Copyright © 2016 Nikita <nikita@n0.is>
8 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
10 ;;; Copyright © 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
11 ;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
12 ;;; Copyright © 2016, 2019 Arun Isaac <arunisaac@systemreboot.net>
13 ;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name>
14 ;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
15 ;;; Copyright © 2017, 2018 Rene Saavedra <pacoon@protonmail.com>
16 ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
17 ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
18 ;;; Copyright © 2019 Ben Sturmfels <ben@sturm.com.au>
19 ;;; Copyright © 2019,2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
20 ;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
21 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
22 ;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
23 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages pdf)
41 #:use-module ((guix licenses) #:prefix license:)
42 #:use-module (guix packages)
43 #:use-module (guix download)
44 #:use-module (guix git-download)
45 #:use-module (guix utils)
46 #:use-module (guix build-system gnu)
47 #:use-module (guix build-system cmake)
48 #:use-module (guix build-system meson)
49 #:use-module (guix build-system python)
50 #:use-module (guix build-system qt)
51 #:use-module (guix build-system trivial)
52 #:use-module (gnu packages)
53 #:use-module (gnu packages audio)
54 #:use-module (gnu packages autotools)
55 #:use-module (gnu packages backup)
56 #:use-module (gnu packages base)
57 #:use-module (gnu packages bash)
58 #:use-module (gnu packages check)
59 #:use-module (gnu packages compression)
60 #:use-module (gnu packages cups)
61 #:use-module (gnu packages curl)
62 #:use-module (gnu packages djvu)
63 #:use-module (gnu packages fonts)
64 #:use-module (gnu packages fontutils)
65 #:use-module (gnu packages game-development)
66 #:use-module (gnu packages gcc)
67 #:use-module (gnu packages gettext)
68 #:use-module (gnu packages ghostscript)
69 #:use-module (gnu packages gl)
70 #:use-module (gnu packages glib)
71 #:use-module (gnu packages gnome)
72 #:use-module (gnu packages gnupg)
73 #:use-module (gnu packages gstreamer)
74 #:use-module (gnu packages gtk)
75 #:use-module (gnu packages image)
76 #:use-module (gnu packages javascript)
77 #:use-module (gnu packages lesstif)
78 #:use-module (gnu packages libffi)
79 #:use-module (gnu packages linux)
80 #:use-module (gnu packages lua)
81 #:use-module (gnu packages pcre)
82 #:use-module (gnu packages perl)
83 #:use-module (gnu packages photo)
84 #:use-module (gnu packages pkg-config)
85 #:use-module (gnu packages pulseaudio)
86 #:use-module (gnu packages python)
87 #:use-module (gnu packages python-check)
88 #:use-module (gnu packages python-web)
89 #:use-module (gnu packages python-xyz)
90 #:use-module (gnu packages qt)
91 #:use-module (gnu packages sdl)
92 #:use-module (gnu packages sphinx)
93 #:use-module (gnu packages sqlite)
94 #:use-module (gnu packages tex)
95 #:use-module (gnu packages time)
96 #:use-module (gnu packages tls)
97 #:use-module (gnu packages web)
98 #:use-module (gnu packages xdisorg)
99 #:use-module (gnu packages xml)
100 #:use-module (gnu packages xorg)
101 #:use-module (srfi srfi-1))
102
103 (define-public flyer-composer
104 (package
105 (name "flyer-composer")
106 (version "1.0rc2")
107 (source
108 (origin
109 (method url-fetch)
110 (uri (pypi-uri "flyer-composer" version))
111 (sha256
112 (base32 "17igqb5dlcgcq4nimjw6cf9qgz6a728zdx1d0rr90r2z0llcchsv"))))
113 (build-system python-build-system)
114 (arguments
115 `(#:tests? #f ;; TODO
116 #:phases
117 (modify-phases %standard-phases
118 (add-after 'install 'wrap-executable
119 (lambda* (#:key inputs outputs #:allow-other-keys)
120 (let* ((out (assoc-ref outputs "out"))
121 (qtbase (assoc-ref inputs "qtbase"))
122 (qml "/lib/qt5/qml"))
123 (wrap-program (string-append out "/bin/flyer-composer-gui")
124 `("QT_PLUGIN_PATH" ":" =
125 (,(string-append qtbase "/lib/qt5/plugins")))
126 `("QT_QPA_PLATFORM_PLUGIN_PATH" ":" =
127 (,(string-append qtbase "/lib/qt5/plugins/platforms"))))
128 #t))))))
129 (inputs
130 `(("python-pypdf2" ,python-pypdf2)
131 ("python-pyqt" ,python-pyqt)
132 ("python-poppler-qt5" ,python-poppler-qt5)
133 ("qtbase" ,qtbase)))
134 (home-page "http://crazy-compilers.com/flyer-composer")
135 (synopsis "Rearrange PDF pages to print as flyers on one sheet")
136 (description "@command{flyer-composer} can be used to prepare one- or
137 two-sided flyers for printing on one sheet of paper.
138
139 Imagine you have designed a flyer in A6 format and want to print it using your
140 A4 printer. Of course, you want to print four flyers on each sheet. This is
141 where Flyer Composer steps in, creating a PDF which holds your flyer four
142 times. If you have a second page, Flyer Composer can arrange it the same way
143 - even if the second page is in a separate PDF file.
144
145 This package contains both the command line tool and the gui too.")
146 (license license:agpl3+)))
147
148 (define-public flyer-composer-cli
149 (package/inherit flyer-composer
150 (name "flyer-composer-cli")
151 (arguments
152 `(#:tests? #f ;; TODO
153 #:phases
154 (modify-phases %standard-phases
155 (add-after 'unpack 'remove-gui
156 (lambda _
157 (delete-file-recursively "flyer_composer/gui")
158 (substitute* "setup.cfg"
159 (("^\\s+flyer-composer-gui\\s*=.*") ""))
160 #t)))))
161 (inputs
162 `(("python-pypdf2" ,python-pypdf2)))
163 (description "@command{flyer-composer} can be used to prepare one- or
164 two-sided flyers for printing on one sheet of paper.
165
166 Imagine you have designed a flyer in A6 format and want to print it using your
167 A4 printer. Of course, you want to print four flyers on each sheet. This is
168 where Flyer Composer steps in, creating a PDF which holds your flyer four
169 times. If you have a second page, Flyer Composer can arrange it the same way
170 - even if the second page is in a separate PDF file.
171
172 This package contains only the command line tool. If you like to use the gui,
173 please install the @code{flyer-composer-gui} package.")))
174
175 (define-public poppler
176 (package
177 (name "poppler")
178 (version "0.86.1")
179 (source (origin
180 (method url-fetch)
181 (uri (string-append "https://poppler.freedesktop.org/poppler-"
182 version ".tar.xz"))
183 (sha256
184 (base32
185 "0v3z4mk1rr8i0c4cfkab7pnxdbil30j4cm4w6cqlq6cfghkhlqxg"))))
186 (build-system cmake-build-system)
187 ;; FIXME:
188 ;; use libcurl: no
189 (inputs `(("fontconfig" ,fontconfig)
190 ("freetype" ,freetype)
191 ("libjpeg" ,libjpeg-turbo)
192 ("libpng" ,libpng)
193 ("libtiff" ,libtiff)
194 ("lcms" ,lcms)
195 ("openjpeg" ,openjpeg)
196 ("zlib" ,zlib)
197
198 ;; To build poppler-glib (as needed by Evince), we need Cairo and
199 ;; GLib. But of course, that Cairo must not depend on Poppler.
200 ("cairo" ,cairo-sans-poppler)))
201 (propagated-inputs
202 ;; As per poppler-cairo and poppler-glib.pc.
203 ;; XXX: Ideally we'd propagate Cairo too, but that would require a
204 ;; different solution to the circular dependency mentioned above.
205 `(("glib" ,glib)))
206 (native-inputs
207 `(("pkg-config" ,pkg-config)
208 ("glib" ,glib "bin") ; glib-mkenums, etc.
209 ("gobject-introspection" ,gobject-introspection)))
210 (arguments
211 `(#:tests? #f ; no test data provided with the tarball
212 #:configure-flags
213 (let* ((out (assoc-ref %outputs "out"))
214 (lib (string-append out "/lib")))
215 (list "-DENABLE_UNSTABLE_API_ABI_HEADERS=ON" ;to install header files
216 "-DENABLE_ZLIB=ON"
217 (string-append "-DCMAKE_INSTALL_LIBDIR=" lib)
218 (string-append "-DCMAKE_INSTALL_RPATH=" lib)))))
219 (synopsis "PDF rendering library")
220 (description
221 "Poppler is a PDF rendering library based on the xpdf-3.0 code base.")
222 (license license:gpl2+)
223 (home-page "https://poppler.freedesktop.org/")))
224
225 (define-public poppler-data
226 (package
227 (name "poppler-data")
228 (version "0.4.10")
229 (source (origin
230 (method url-fetch)
231 (uri (string-append "https://poppler.freedesktop.org/poppler-data"
232 "-" version ".tar.gz"))
233 (sha256
234 (base32
235 "0c3vjs3p7rjc4yfacnhd865r27czmzwcr4j2z4jldi68dvvcwbvf"))))
236 (build-system gnu-build-system)
237 (arguments
238 '(#:tests? #f ; no test suite
239 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
240 #:phases
241 (modify-phases %standard-phases
242 ;; The package only provides some data files, so there is nothing to
243 ;; build.
244 (delete 'configure)
245 (delete 'build))))
246 (synopsis "Poppler encoding files for rendering of CJK and Cyrillic text")
247 (description "This package provides optional encoding files for Poppler.
248 When present, Poppler is able to correctly render CJK and Cyrillic text.")
249 (home-page (package-home-page poppler))
250 ;; See COPYING in the source distribution for more information about
251 ;; the licensing.
252 (license (list license:bsd-3
253 license:gpl2))))
254
255 (define-public poppler-qt4
256 (package/inherit poppler
257 (name "poppler-qt4")
258 (inputs `(("qt-4" ,qt-4)
259 ,@(package-inputs poppler)))
260 (synopsis "Qt4 frontend for the Poppler PDF rendering library")))
261
262 (define-public poppler-qt5
263 (package/inherit poppler
264 (name "poppler-qt5")
265 (inputs `(("qtbase" ,qtbase)
266 ,@(package-inputs poppler)))
267 (synopsis "Qt5 frontend for the Poppler PDF rendering library")))
268
269 (define-public python-poppler-qt5
270 (package
271 (name "python-poppler-qt5")
272 (version "0.24.2")
273 (source
274 (origin
275 (method url-fetch)
276 (uri (pypi-uri "python-poppler-qt5" version))
277 (sha256
278 (base32
279 "0l69llw1fzwz8y90q0qp9q5pifbrqjjbwii7di54dwghw5fc6w1r"))))
280 (build-system python-build-system)
281 (arguments
282 `(;; There are no tests. The check phase just causes a rebuild.
283 #:tests? #f
284 #:phases
285 (modify-phases %standard-phases
286 (replace 'build
287 (lambda* (#:key inputs #:allow-other-keys)
288 (substitute* "setup.py"
289 ;; This check always fails, so disable it.
290 (("if not check_qtxml\\(\\)")
291 "if True"))
292 ;; We need to pass an extra flag here. This cannot be in
293 ;; configure-flags because it should not be passed for the
294 ;; installation phase.
295 ((@@ (guix build python-build-system) call-setuppy)
296 "build_ext" (list (string-append "--pyqt-sip-dir="
297 (assoc-ref inputs "python-pyqt")
298 "/share/sip")) #t))))))
299 (native-inputs
300 `(("pkg-config" ,pkg-config)))
301 (inputs
302 `(("python-sip" ,python-sip)
303 ("python-pyqt" ,python-pyqt)
304 ("poppler-qt5" ,poppler-qt5)
305 ("qtbase" ,qtbase)))
306 (home-page "https://pypi.org/project/python-poppler-qt5/")
307 (synopsis "Python bindings for Poppler-Qt5")
308 (description
309 "This package provides Python bindings for the Qt5 interface of the
310 Poppler PDF rendering library.")
311 (license license:lgpl2.1+)))
312
313 (define-public libharu
314 (package
315 (name "libharu")
316 (version "2.3.0")
317 (source (origin
318 (method git-fetch)
319 (uri (git-reference
320 (url "https://github.com/libharu/libharu")
321 (commit (string-append
322 "RELEASE_"
323 (string-join (string-split version #\.) "_")))))
324 (file-name (git-file-name name version))
325 (sha256
326 (base32
327 "15s9hswnl3qqi7yh29jyrg0hma2n99haxznvcywmsp8kjqlyg75q"))))
328 (build-system gnu-build-system)
329 (arguments
330 `(#:configure-flags
331 (list (string-append "--with-zlib="
332 (assoc-ref %build-inputs "zlib"))
333 (string-append "--with-png="
334 (assoc-ref %build-inputs "libpng")))))
335 (inputs
336 `(("zlib" ,zlib)
337 ("libpng" ,libpng)))
338 (native-inputs
339 `(("autoconf" ,autoconf)
340 ("automake" ,automake)
341 ("libtool" ,libtool)))
342 (home-page "http://libharu.org/")
343 (synopsis "Library for generating PDF files")
344 (description
345 "libHaru is a library for generating PDF files. libHaru does not support
346 reading and editing of existing PDF files.")
347 (license license:zlib)))
348
349 (define-public xpdf
350 (package
351 (name "xpdf")
352 (version "4.02")
353 (source
354 (origin
355 (method url-fetch)
356 (uri (string-append "https://xpdfreader-dl.s3.amazonaws.com/xpdf-"
357 version "4.02.tar.gz"))
358 (sha256
359 (base32 "1rbp54mr3z2x3a3a1qmz8byzygzi223vckfam9ib5g1sfds0qf8i"))))
360 (build-system gnu-build-system)
361 (inputs `(("freetype" ,freetype)
362 ("gs-fonts" ,gs-fonts)
363 ("lesstif" ,lesstif)
364 ("libpaper" ,libpaper)
365 ("libx11" ,libx11)
366 ("libxext" ,libxext)
367 ("libxp" ,libxp)
368 ("libxpm" ,libxpm)
369 ("libxt" ,libxt)
370 ("libpng" ,libpng)
371 ("zlib" ,zlib)))
372 (arguments
373 `(#:tests? #f ; there is no check target
374 #:parallel-build? #f ; build fails randomly on 8-way machines
375 #:configure-flags
376 (list (string-append "--with-freetype2-includes="
377 (assoc-ref %build-inputs "freetype")
378 "/include/freetype2"))
379 #:phases
380 (modify-phases %standard-phases
381 (replace 'install
382 (lambda* (#:key outputs inputs #:allow-other-keys #:rest args)
383 (let* ((install (assoc-ref %standard-phases 'install))
384 (out (assoc-ref outputs "out"))
385 (xpdfrc (string-append out "/etc/xpdfrc"))
386 (gs-fonts (assoc-ref inputs "gs-fonts")))
387 (apply install args)
388 (substitute* xpdfrc
389 (("/usr/local/share/ghostscript/fonts")
390 (string-append gs-fonts "/share/fonts/type1/ghostscript"))
391 (("#fontFile") "fontFile")))
392 #t)))))
393 (synopsis "Viewer for PDF files based on the Motif toolkit")
394 (description
395 "Xpdf is a viewer for Portable Document Format (PDF) files.")
396 (license license:gpl3) ; or gpl2, but not gpl2+
397 (home-page "https://www.xpdfreader.com/")))
398
399 (define-public zathura-cb
400 (package
401 (name "zathura-cb")
402 (version "0.1.8")
403 (source (origin
404 (method url-fetch)
405 (uri
406 (string-append "https://pwmt.org/projects/zathura-cb/download/zathura-cb-"
407 version ".tar.xz"))
408 (sha256
409 (base32
410 "1i6cf0vks501cggwvfsl6qb7mdaf3sszdymphimfvnspw810faj5"))))
411 (native-inputs `(("pkg-config" ,pkg-config)))
412 (inputs `(("libarchive" ,libarchive)
413 ("zathura" ,zathura)))
414 (build-system meson-build-system)
415 (arguments
416 `(#:tests? #f ; package does not contain tests
417 #:phases
418 (modify-phases %standard-phases
419 (add-after 'unpack 'patch-plugin-directory
420 ;; Something of a regression in 0.1.8: the new Meson build system
421 ;; now hard-codes an incorrect plugin directory. Fix it.
422 (lambda* (#:key outputs #:allow-other-keys)
423 (substitute* "meson.build"
424 (("(install_dir:).*" _ key)
425 (string-append key
426 "'" (assoc-ref outputs "out") "/lib/zathura'\n")))
427 #t)))))
428 (home-page "https://pwmt.org/projects/zathura-cb/")
429 (synopsis "Comic book support for zathura (libarchive backend)")
430 (description "The zathura-cb plugin adds comic book support to zathura
431 using libarchive.")
432 (license license:zlib)))
433
434 (define-public zathura-ps
435 (package
436 (name "zathura-ps")
437 (version "0.2.6")
438 (source (origin
439 (method url-fetch)
440 (uri
441 (string-append "https://pwmt.org/projects/zathura-ps/download/zathura-ps-"
442 version ".tar.xz"))
443 (sha256
444 (base32
445 "0wygq89nyjrjnsq7vbpidqdsirjm6iq4w2rijzwpk2f83ys8bc3y"))))
446 (native-inputs `(("pkg-config" ,pkg-config)))
447 (inputs `(("libspectre" ,libspectre)
448 ("zathura" ,zathura)))
449 (build-system meson-build-system)
450 (arguments
451 `(#:tests? #f ; package does not contain tests
452 #:phases
453 (modify-phases %standard-phases
454 (add-after 'unpack 'patch-plugin-directory
455 ;; Something of a regression in 0.2.6: the new Meson build system
456 ;; now hard-codes an incorrect plugin directory. Fix it.
457 (lambda* (#:key outputs #:allow-other-keys)
458 (substitute* "meson.build"
459 (("(install_dir:).*" _ key)
460 (string-append key
461 "'" (assoc-ref outputs "out") "/lib/zathura'\n")))
462 #t)))))
463 (home-page "https://pwmt.org/projects/zathura-ps/")
464 (synopsis "PS support for zathura (libspectre backend)")
465 (description "The zathura-ps plugin adds PS support to zathura
466 using libspectre.")
467 (license license:zlib)))
468
469 (define-public zathura-djvu
470 (package
471 (name "zathura-djvu")
472 (version "0.2.9")
473 (source (origin
474 (method url-fetch)
475 (uri
476 (string-append "https://pwmt.org/projects/zathura-djvu/download/zathura-djvu-"
477 version ".tar.xz"))
478 (sha256
479 (base32
480 "0062n236414db7q7pnn3ccg5111ghxj3407pn9ri08skxskgirln"))))
481 (native-inputs `(("pkg-config" ,pkg-config)))
482 (inputs
483 `(("djvulibre" ,djvulibre)
484 ("zathura" ,zathura)))
485 (build-system meson-build-system)
486 (arguments
487 `(#:tests? #f ; package does not contain tests
488 #:phases
489 (modify-phases %standard-phases
490 (add-after 'unpack 'patch-plugin-directory
491 ;; Something of a regression in 0.2.8: the new Meson build system
492 ;; now hard-codes an incorrect plugin directory. Fix it.
493 (lambda* (#:key outputs #:allow-other-keys)
494 (substitute* "meson.build"
495 (("(install_dir:).*" _ key)
496 (string-append key
497 "'" (assoc-ref outputs "out") "/lib/zathura'\n")))
498 #t)))))
499 (home-page "https://pwmt.org/projects/zathura-djvu/")
500 (synopsis "DjVu support for zathura (DjVuLibre backend)")
501 (description "The zathura-djvu plugin adds DjVu support to zathura
502 using the DjVuLibre library.")
503 (license license:zlib)))
504
505 (define-public zathura-pdf-mupdf
506 (package
507 (name "zathura-pdf-mupdf")
508 (version "0.3.6")
509 (source (origin
510 (method url-fetch)
511 (uri
512 (string-append "https://pwmt.org/projects/zathura-pdf-mupdf"
513 "/download/zathura-pdf-mupdf-" version ".tar.xz"))
514 (sha256
515 (base32
516 "1r3v37k9fl2rxipvacgxr36llywvy7n20a25h3ajlyk70697sa66"))))
517 (native-inputs `(("pkg-config" ,pkg-config)))
518 (inputs
519 `(("jbig2dec" ,jbig2dec)
520 ("libjpeg" ,libjpeg-turbo)
521 ("mujs" ,mujs)
522 ("mupdf" ,mupdf)
523 ("openjpeg" ,openjpeg)
524 ("openssl" ,openssl)
525 ("zathura" ,zathura)))
526 (build-system meson-build-system)
527 (arguments
528 `(#:tests? #f ; package does not contain tests
529 #:configure-flags (list (string-append "-Dplugindir="
530 (assoc-ref %outputs "out")
531 "/lib/zathura")
532 "-Dlink-external=true")
533 #:phases
534 (modify-phases %standard-phases
535 (add-after 'unpack 'remove-libmupdfthird.a-requirement
536 (lambda _
537 ;; Ignore a missing (apparently superfluous) static library.
538 (substitute* "meson.build"
539 ((".*mupdfthird.*") ""))
540 #t))
541 (add-before 'configure 'add-mujs-to-dependencies
542 (lambda _
543 ;; Add mujs to the 'build_dependencies'.
544 (substitute* "meson.build"
545 (("^ libopenjp2 = dependency.*" x)
546 (string-append x " mujs = cc.find_library('mujs')\n"))
547 (("^ libopenjp2")
548 " libopenjp2, mujs")))))))
549 (home-page "https://pwmt.org/projects/zathura-pdf-mupdf/")
550 (synopsis "PDF support for zathura (mupdf backend)")
551 (description "The zathura-pdf-mupdf plugin adds PDF support to zathura
552 by using the @code{mupdf} rendering library.")
553 (license license:zlib)))
554
555 (define-public zathura-pdf-poppler
556 (package
557 (name "zathura-pdf-poppler")
558 (version "0.3.0")
559 (source (origin
560 (method url-fetch)
561 (uri
562 (string-append "https://pwmt.org/projects/zathura-pdf-poppler/download/zathura-pdf-poppler-"
563 version ".tar.xz"))
564 (sha256
565 (base32
566 "1vfl4vkyy3rf39r1sqaa7y8113bgkh2bkfq3nn2inis9mrykmk6m"))))
567 (native-inputs `(("pkg-config" ,pkg-config)))
568 (inputs
569 `(("poppler" ,poppler)
570 ("zathura" ,zathura)))
571 (build-system meson-build-system)
572 (arguments
573 `(#:tests? #f ; package does not include tests
574 #:phases
575 (modify-phases %standard-phases
576 (add-after 'unpack 'patch-plugin-directory
577 ;; Something of a regression in 0.2.9: the new Meson build system
578 ;; now hard-codes an incorrect plugin directory. Fix it.
579 (lambda* (#:key outputs #:allow-other-keys)
580 (substitute* "meson.build"
581 (("(install_dir:).*" _ key)
582 (string-append key
583 "'" (assoc-ref outputs "out") "/lib/zathura'\n")))
584 #t)))))
585 (home-page "https://pwmt.org/projects/zathura-pdf-poppler/")
586 (synopsis "PDF support for zathura (poppler backend)")
587 (description "The zathura-pdf-poppler plugin adds PDF support to zathura
588 by using the poppler rendering engine.")
589 (license license:zlib)))
590
591 (define-public zathura
592 (package
593 (name "zathura")
594 (version "0.4.7")
595 (source (origin
596 (method url-fetch)
597 (uri
598 (string-append "https://pwmt.org/projects/zathura/download/zathura-"
599 version ".tar.xz"))
600 (sha256
601 (base32
602 "1rx1fk9s556fk59lmqgvhwrmv71ashh89bx9adjq46wq5gzdn4p0"))))
603 (native-inputs `(("pkg-config" ,pkg-config)
604 ("gettext" ,gettext-minimal)
605 ("glib:bin" ,glib "bin")
606
607 ;; For building documentation.
608 ("python-sphinx" ,python-sphinx)
609
610 ;; For building icons.
611 ("librsvg" ,librsvg)
612
613 ;; For tests.
614 ("check" ,check)
615 ("xorg-server" ,xorg-server-for-tests)))
616 (inputs `(("sqlite" ,sqlite)))
617 ;; Listed in 'Requires.private' of 'zathura.pc'.
618 (propagated-inputs `(("cairo" ,cairo)
619 ("girara" ,girara)))
620 (native-search-paths
621 (list (search-path-specification
622 (variable "ZATHURA_PLUGINS_PATH")
623 (files '("lib/zathura")))))
624 (build-system meson-build-system)
625 (arguments
626 `(#:phases (modify-phases %standard-phases
627 (add-before 'check 'start-xserver
628 ;; Tests require a running X server.
629 (lambda* (#:key inputs #:allow-other-keys)
630 (let ((xorg-server (assoc-ref inputs "xorg-server"))
631 (display ":1"))
632 (setenv "DISPLAY" display)
633
634 ;; On busy machines, tests may take longer than
635 ;; the default of four seconds.
636 (setenv "CK_DEFAULT_TIMEOUT" "20")
637
638 ;; Don't fail due to missing '/etc/machine-id'.
639 (setenv "DBUS_FATAL_WARNINGS" "0")
640 (zero? (system (string-append xorg-server "/bin/Xvfb "
641 display " &")))))))))
642 (home-page "https://pwmt.org/projects/zathura/")
643 (synopsis "Lightweight keyboard-driven PDF viewer")
644 (description "Zathura is a customizable document viewer. It provides a
645 minimalistic interface and an interface that mainly focuses on keyboard
646 interaction.")
647 (license license:zlib)))
648
649 (define-public podofo
650 (package
651 (name "podofo")
652 (version "0.9.7")
653 (source (origin
654 (method url-fetch)
655 (uri (string-append "mirror://sourceforge/podofo/podofo/" version
656 "/podofo-" version ".tar.gz"))
657 (sha256
658 (base32
659 "1f0yvkx6nf99fp741w2y706d8bs9824x1z2gqm3rdy5fv8bfgwkw"))))
660 (build-system cmake-build-system)
661 (native-inputs
662 `(("cppunit" ,cppunit)
663 ("pkg-config" ,pkg-config)))
664 (inputs
665 `(("libjpeg" ,libjpeg-turbo)
666 ("libtiff" ,libtiff)
667 ("fontconfig" ,fontconfig)
668 ("freetype" ,freetype)
669 ("libpng" ,libpng)
670 ("lua" ,lua-5.1)
671 ("openssl" ,openssl)
672 ("zlib" ,zlib)))
673 (arguments
674 `(#:configure-flags
675 (list "-DPODOFO_BUILD_SHARED=ON")
676 #:phases
677 (modify-phases %standard-phases
678 (add-before 'configure 'patch
679 (lambda* (#:key inputs #:allow-other-keys)
680 (let ((freetype (assoc-ref inputs "freetype")))
681 ;; Look for freetype include files in the correct place.
682 (substitute* "cmake/modules/FindFREETYPE.cmake"
683 (("/usr/local") freetype)))
684 #t)))))
685 (home-page "http://podofo.sourceforge.net")
686 (synopsis "Tools to work with the PDF file format")
687 (description
688 "PoDoFo is a C++ library and set of command-line tools to work with the
689 PDF file format. It can parse PDF files and load them into memory, and makes
690 it easy to modify them and write the changes to disk. It is primarily useful
691 for applications that wish to do lower level manipulation of PDF, such as
692 extracting content or merging files.")
693 (license license:lgpl2.0+)))
694
695 (define-public mupdf
696 (package
697 (name "mupdf")
698 (version "1.18.0")
699 (source
700 (origin
701 (method url-fetch)
702 (uri (string-append "https://mupdf.com/downloads/archive/"
703 "mupdf-" version "-source.tar.xz"))
704 (sha256
705 (base32 "16m5sksil22sshxy70xkslsb2qhvcqb1d95i9savnhds1xn4ybar"))
706 (patches (search-patches "mupdf-fix-linkage.patch"))
707 (modules '((guix build utils)))
708 (snippet
709 '(begin
710 ;; Remove bundled software.
711 (let* ((keep (list "lcms2")) ; different from our lcms2 package
712 (from "thirdparty")
713 (kept (string-append from "~temp")))
714 (mkdir-p kept)
715 (for-each (lambda (file) (rename-file (string-append from "/" file)
716 (string-append kept "/" file)))
717 keep)
718 (delete-file-recursively from)
719 (rename-file kept from))
720 #t))))
721 (build-system gnu-build-system)
722 (inputs
723 `(("curl" ,curl)
724 ("freeglut" ,freeglut)
725 ("freetype" ,freetype)
726 ("gumbo-parser" ,gumbo-parser)
727 ("harfbuzz" ,harfbuzz)
728 ("jbig2dec" ,jbig2dec)
729 ("libjpeg" ,libjpeg-turbo)
730 ("libx11" ,libx11)
731 ("libxext" ,libxext)
732 ("mujs" ,mujs)
733 ("openjpeg" ,openjpeg)
734 ("openssl" ,openssl)
735 ("zlib" ,zlib)))
736 (native-inputs
737 `(("pkg-config" ,pkg-config)))
738 (arguments
739 `(#:tests? #f ; no check target
740 #:make-flags (list "verbose=yes"
741 (string-append "CC=" ,(cc-for-target))
742 "XCFLAGS=-fpic"
743 "USE_SYSTEM_LIBS=yes"
744 "USE_SYSTEM_MUJS=yes"
745 "shared=yes"
746 ;; Even with the linkage patch we must fix RUNPATH.
747 (string-append "LDFLAGS=-Wl,-rpath="
748 (assoc-ref %outputs "out") "/lib")
749 (string-append "prefix=" (assoc-ref %outputs "out")))
750 #:phases (modify-phases %standard-phases
751 (delete 'configure)))) ; no configure script
752 (home-page "https://mupdf.com")
753 (synopsis "Lightweight PDF viewer and toolkit")
754 (description
755 "MuPDF is a C library that implements a PDF and XPS parsing and
756 rendering engine. It is used primarily to render pages into bitmaps,
757 but also provides support for other operations such as searching and
758 listing the table of contents and hyperlinks.
759
760 The library ships with a rudimentary X11 viewer, and a set of command
761 line tools for batch rendering @command{pdfdraw}, rewriting files
762 @command{pdfclean}, and examining the file structure @command{pdfshow}.")
763 (license (list license:agpl3+
764 license:bsd-3 ; resources/cmaps
765 license:x11 ; thirdparty/lcms2
766 license:silofl1.1 ; resources/fonts/{han,noto,sil,urw}
767 license:asl2.0)))) ; resources/fonts/droid
768
769 (define-public qpdf
770 (package
771 (name "qpdf")
772 (version "10.0.1")
773 (source (origin
774 (method url-fetch)
775 (uri (string-append "mirror://sourceforge/qpdf/qpdf/" version
776 "/qpdf-" version ".tar.gz"))
777 (sha256
778 (base32
779 "0yw2cpw7ygfd6jlgpwbi8vsnvv9p55zxp9h17x77z2qq733pf8jx"))))
780 (build-system gnu-build-system)
781 (arguments
782 `(#:disallowed-references (,perl)
783 #:phases
784 (modify-phases %standard-phases
785 (add-before 'configure 'patch-paths
786 (lambda _
787 (substitute* "make/libtool.mk"
788 (("SHELL=/bin/bash")
789 (string-append "SHELL=" (which "bash"))))
790 (substitute* (append
791 '("qtest/bin/qtest-driver")
792 (find-files "." "\\.test"))
793 (("/usr/bin/env") (which "env")))
794 #t)))))
795 (native-inputs
796 `(("pkg-config" ,pkg-config)
797 ("perl" ,perl)))
798 (propagated-inputs
799 ;; In Requires.private of libqpdf.pc.
800 `(("libjpeg-turbo" ,libjpeg-turbo)
801 ("zlib" ,zlib)))
802 (synopsis "Command-line tools and library for transforming PDF files")
803 (description
804 "QPDF is a command-line program that does structural, content-preserving
805 transformations on PDF files. It could have been called something like
806 pdf-to-pdf. It includes support for merging and splitting PDFs and to
807 manipulate the list of pages in a PDF file. It is not a PDF viewer or a
808 program capable of converting PDF into other formats.")
809 ;; Prior to the 7.0 release, QPDF was licensed under Artistic 2.0.
810 ;; Users can still choose to use the old license at their option.
811 (license (list license:asl2.0 license:clarified-artistic))
812 (home-page "http://qpdf.sourceforge.net/")))
813
814 (define-public qpdfview
815 (package
816 (name "qpdfview")
817 (version "0.4.18")
818 (source
819 (origin
820 (method url-fetch)
821 (uri (string-append "https://launchpad.net/qpdfview/"
822 "trunk/" version "/+download/"
823 "qpdfview-" version ".tar.gz"))
824 (sha256
825 (base32 "0v1rl126hvblajnph2hkansgi0s8vjdc5yxrm4y3faa0lxzjwr6c"))))
826 (build-system gnu-build-system)
827 (native-inputs
828 `(("pkg-config" ,pkg-config)))
829 (inputs
830 `(("cups" ,cups)
831 ("djvulibre" ,djvulibre)
832 ("libspectre" ,libspectre)
833 ("poppler-qt5" ,poppler-qt5)
834 ("qtbase" ,qtbase)
835 ("qtsvg" ,qtsvg)))
836 (arguments
837 `(#:imported-modules ((guix build qt-build-system)
838 (guix build cmake-build-system)
839 ,@%gnu-build-system-modules)
840 #:modules ((guix build utils)
841 (guix build gnu-build-system)
842 ((guix build qt-build-system) #:prefix qt:))
843 #:phases
844 (modify-phases %standard-phases
845 (replace 'configure
846 (lambda _
847 (substitute* "qpdfview.pri"
848 (("/usr") (assoc-ref %outputs "out")))
849 (invoke "qmake" "qpdfview.pro")))
850 ;; Otherwise, the user interface will not display any icons.
851 (add-after 'install 'qt-wrap
852 (assoc-ref qt:%standard-phases 'qt-wrap)))))
853 (home-page "https://launchpad.net/qpdfview")
854 (synopsis "Tabbed document viewer")
855 (description "@command{qpdfview} is a document viewer for PDF, PS and DJVU
856 files. It uses the Qt toolkit and features persistent per-file settings,
857 configurable toolbars and shortcuts, continuous and multi‐page layouts,
858 SyncTeX support, and rudimentary support for annotations and forms.")
859 (license license:gpl2+)))
860
861 (define-public xournal
862 (package
863 (name "xournal")
864 (version "0.4.8.2016")
865 (source
866 (origin
867 (method url-fetch)
868 (uri (string-append "mirror://sourceforge/xournal/xournal/" version
869 "/xournal-" version ".tar.gz"))
870 (sha256
871 (base32
872 "09i88v3wacmx7f96dmq0l3afpyv95lh6jrx16xzm0jd1szdrhn5j"))))
873 (build-system gnu-build-system)
874 (inputs
875 `(("gtk" ,gtk+-2)
876 ("pango" ,pango)
877 ("poppler" ,poppler)
878 ("glib" ,glib)
879 ("libgnomecanvas" ,libgnomecanvas)))
880 (native-inputs
881 `(("pkg-config" ,pkg-config)))
882 (home-page "http://xournal.sourceforge.net/")
883 (synopsis "Notetaking using a stylus")
884 (description
885 "Xournal is an application for notetaking, sketching, keeping a journal
886 using a stylus.")
887 (license license:gpl2+)))
888
889 (define-public xournalpp
890 (package
891 (name "xournalpp")
892 (version "1.0.20")
893 (source
894 (origin
895 (method git-fetch)
896 (uri (git-reference
897 (url "https://github.com/xournalpp/xournalpp")
898 (commit version)))
899 (file-name (git-file-name name version))
900 (sha256
901 (base32 "1c7n03xm3m4lwcwxgplkn25i8c6s3i7rijbkcx86br1j4jadcs3k"))))
902 (build-system cmake-build-system)
903 (arguments
904 `(#:configure-flags (list "-DENABLE_CPPUNIT=ON") ;enable tests
905 #:imported-modules ((guix build glib-or-gtk-build-system)
906 ,@%cmake-build-system-modules)
907 #:modules (((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
908 (guix build cmake-build-system)
909 (guix build utils))
910 #:phases
911 (modify-phases %standard-phases
912 (add-after 'unpack 'fix-permissions-on-po-files
913 (lambda _
914 ;; Make sure 'msgmerge' can modify the PO files.
915 (for-each (lambda (po) (chmod po #o666))
916 (find-files "." "\\.po$"))
917 #t))
918 ;; Fix path to addr2line utility, which the crash reporter uses.
919 (add-after 'unpack 'fix-paths
920 (lambda* (#:key inputs #:allow-other-keys)
921 (substitute* "src/util/Stacktrace.cpp"
922 ;; Match only the commandline.
923 (("\"addr2line ")
924 (string-append "\"" (which "addr2line") " ")))
925 #t))
926 (add-after 'install 'glib-or-gtk-wrap
927 (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
928 (native-inputs
929 `(("cppunit" ,cppunit)
930 ("gettext" ,gettext-minimal)
931 ("pkg-config" ,pkg-config)))
932 (inputs
933 `(("alsa-lib" ,alsa-lib)
934 ("glib" ,glib)
935 ("gtk+" ,gtk+)
936 ("libsndfile" ,libsndfile)
937 ("libxml2" ,libxml2)
938 ("libzip" ,libzip)
939 ("lua" ,lua) ;FIXME: It cannot find the Lua library.
940 ("poppler" ,poppler)
941 ("portaudio" ,portaudio)
942 ("texlive-bin" ,texlive-bin)))
943 (home-page "https://github.com/xournalpp/xournalpp")
944 (synopsis "Handwriting notetaking software with PDF annotation support")
945 (description "Xournal++ is a hand note taking software written in
946 C++ with the target of flexibility, functionality and speed. Stroke
947 recognizer and other parts are based on Xournal code.
948
949 Xournal++ features:
950
951 @itemize
952 @item Support for Pen pressure, e.g., Wacom Tablet
953 @item Support for annotating PDFs
954 @item Fill shape functionality
955 @item PDF Export (with and without paper style)
956 @item PNG Export (with and without transparent background)
957 @item Map different tools / colors etc. to stylus buttons /
958 mouse buttons
959 @item Sidebar with Page Previews with advanced page sorting, PDF
960 Bookmarks and Layers (can be individually hidden, editing layer can be
961 selected)
962 @item enhanced support for image insertion
963 @item Eraser with multiple configurations
964 @item LaTeX support
965 @item bug reporting, autosave, and auto backup tools
966 @item Customizeable toolbar, with multiple configurations, e.g., to
967 optimize toolbar for portrait / landscape
968 @item Page Template definitions
969 @item Shape drawing (line, arrow, circle, rectangle)
970 @item Shape resizing and rotation
971 @item Rotation snapping every 45 degrees
972 @item Rect snapping to grid
973 @item Audio recording and playback alongside with handwritten notes
974 @item Multi Language Support, Like English, German, Italian...
975 @item Plugins using LUA Scripting
976 @end itemize")
977 (license license:gpl2+)))
978
979 (define-public python-reportlab
980 (package
981 (name "python-reportlab")
982 (version "3.5.42")
983 (source (origin
984 (method url-fetch)
985 (uri (pypi-uri "reportlab" version))
986 (sha256
987 (base32
988 "0i17qgm7gzy7pzp240mkpsx9rn8rr67jh5npp5bylv3sd41g48cw"))))
989 (build-system python-build-system)
990 (arguments
991 '(;; FIXME: There is one test failure, building the pdf manual from source,
992 ;; but it does not cause the build to fail.
993 #:test-target "tests"
994 #:configure-flags (list "--use-system-libart")
995 #:phases
996 (modify-phases %standard-phases
997 (add-after 'unpack 'find-libraries
998 (lambda* (#:key inputs #:allow-other-keys)
999 (let ((libart (assoc-ref inputs "libart-lgpl"))
1000 (freetype (assoc-ref inputs "freetype"))
1001 (dlt1 (assoc-ref inputs "font-curve-files")))
1002 (substitute* "setup.py"
1003 (("/usr/include/libart-\\*")
1004 (string-append libart "/include/libart-2.0"))
1005 (("/usr/include/freetype2")
1006 (string-append freetype "/include"))
1007 (("http://www.reportlab.com/ftp/pfbfer-20180109.zip")
1008 (string-append "file://" dlt1)))
1009 #t))))))
1010 (inputs
1011 `(("freetype" ,freetype)
1012 ("libart-lgpl" ,libart-lgpl)
1013 ("font-curve-files"
1014 ,(origin
1015 (method url-fetch)
1016 (uri "http://www.reportlab.com/ftp/pfbfer-20180109.zip")
1017 (sha256
1018 (base32
1019 "1v0gy4mbx02ys96ssx89420y0njknlrxs2bx64bv4rp8a0al66w5"))))))
1020 (propagated-inputs
1021 `(("python-pillow" ,python-pillow)))
1022 (home-page "https://www.reportlab.com")
1023 (synopsis "Python library for generating PDFs and graphics")
1024 (description "This is the ReportLab PDF Toolkit. It allows rapid creation
1025 of rich PDF documents, and also creation of charts in a variety of bitmap and
1026 vector formats.")
1027 (license license:bsd-3)))
1028
1029 (define-public python2-reportlab
1030 (package-with-python2 python-reportlab))
1031
1032 (define-public impressive
1033 (package
1034 (name "impressive")
1035 (version "0.12.1")
1036 (source (origin
1037 (method url-fetch)
1038 (uri (string-append
1039 "mirror://sourceforge/impressive/Impressive/"
1040 version "/Impressive-" version ".tar.gz"))
1041 (sha256
1042 (base32
1043 "1r7ihv41awnlnlry1kymb8fka053wdhzibfwcarn78rr3vs338vl"))))
1044 (build-system python-build-system)
1045
1046 ;; TODO: Add dependency on pdftk.
1047 (inputs `(("python2-pygame" ,python2-pygame)
1048 ("python2-pillow" ,python2-pillow)
1049 ("sdl" ,sdl)
1050 ("xpdf" ,xpdf)))
1051
1052 (arguments
1053 `(#:python ,python-2
1054 #:phases (modify-phases %standard-phases
1055 (delete 'build)
1056 (delete 'configure)
1057 (delete 'check)
1058 (replace 'install
1059 (lambda* (#:key inputs outputs #:allow-other-keys)
1060 ;; There's no 'setup.py' so install things manually.
1061 (let* ((out (assoc-ref outputs "out"))
1062 (bin (string-append out "/bin"))
1063 (man1 (string-append out "/share/man/man1"))
1064 (sdl (assoc-ref inputs "sdl"))
1065 (xpdf (assoc-ref inputs "xpdf")))
1066 (mkdir-p bin)
1067 (copy-file "impressive.py"
1068 (string-append bin "/impressive"))
1069 (wrap-program (string-append bin "/impressive")
1070 `("LIBRARY_PATH" ":" prefix ;for ctypes
1071 (,(string-append sdl "/lib")))
1072 `("PATH" ":" prefix ;for pdftoppm
1073 (,(string-append xpdf "/bin"))))
1074 (install-file "impressive.1" man1)
1075 #t))))))
1076 (home-page "http://impressive.sourceforge.net")
1077 (synopsis "PDF presentation tool with visual effects")
1078 (description
1079 "Impressive is a tool to display PDF files that provides visual effects
1080 such as smooth alpha-blended slide transitions. It provides additional tools
1081 such as zooming, highlighting an area of the screen, and a tool to navigate
1082 the PDF pages.")
1083 (license license:gpl2)))
1084
1085 (define-public fbida
1086 (package
1087 (name "fbida")
1088 (version "2.14")
1089 (home-page "https://www.kraxel.org/blog/linux/fbida/")
1090 (source (origin
1091 (method url-fetch)
1092 (uri (string-append "https://www.kraxel.org/releases/fbida/"
1093 "fbida-" version ".tar.gz"))
1094 (sha256
1095 (base32
1096 "0f242mix20rgsqz1llibhsz4r2pbvx6k32rmky0zjvnbaqaw1dwm"))))
1097 (build-system gnu-build-system)
1098 (arguments
1099 '(#:phases
1100 (modify-phases %standard-phases
1101 (add-after 'unpack 'patch-FHS-file-names
1102 (lambda _
1103 (substitute* "mk/Autoconf.mk"
1104 (("/bin/echo") "echo")
1105 (("/sbin/ldconfig -p") "echo lib")) #t))
1106 (delete 'configure))
1107 #:tests? #f
1108 #:make-flags (list "CC=gcc"
1109 (string-append "prefix=" (assoc-ref %outputs "out")))))
1110 (inputs `(("libjpeg" ,libjpeg-turbo)
1111 ("curl" ,curl)
1112 ("libtiff" ,libtiff)
1113 ("libudev" ,eudev)
1114 ("libwebp" ,libwebp)
1115 ("libdrm" ,libdrm)
1116 ("giflib" ,giflib)
1117 ("glib" ,glib)
1118 ("cairo-xcb" ,cairo-xcb)
1119 ("freetype" ,freetype)
1120 ("fontconfig" ,fontconfig)
1121 ("libexif" ,libexif)
1122 ("mesa" ,mesa)
1123 ("libepoxy" ,libepoxy)
1124 ("libpng" ,libpng)
1125 ("poppler" ,poppler)))
1126 (native-inputs `(("pkg-config" ,pkg-config)))
1127 (synopsis "Framebuffer and drm-based image viewer")
1128 (description
1129 "fbida contains a few applications for viewing and editing images on
1130 the framebuffer.")
1131
1132 (license license:gpl2+)))
1133
1134 (define-public pdf2svg
1135 (package
1136 (name "pdf2svg")
1137 (version "0.2.3")
1138 (source (origin
1139 (method git-fetch)
1140 (uri (git-reference
1141 (url "https://github.com/dawbarton/pdf2svg")
1142 (commit (string-append "v" version))))
1143 (file-name (git-file-name name version))
1144 (sha256
1145 (base32
1146 "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k"))))
1147 (build-system gnu-build-system)
1148 (inputs
1149 `(("cairo" ,cairo)
1150 ("poppler" ,poppler)))
1151 (native-inputs
1152 `(("pkg-config" ,pkg-config)))
1153 (home-page "http://www.cityinthesky.co.uk/opensource/pdf2svg/")
1154 (synopsis "PDF to SVG converter")
1155 (description "@command{pdf2svg} is a simple command-line PDF to SVG
1156 converter using the Poppler and Cairo libraries.")
1157 (license license:gpl2+)))
1158
1159 (define-public python-pypdf2
1160 (package
1161 (name "python-pypdf2")
1162 (version "1.26.0")
1163 (source (origin
1164 (method url-fetch)
1165 (uri (pypi-uri "PyPDF2" version))
1166 (sha256
1167 (base32
1168 "11a3aqljg4sawjijkvzhs3irpw0y67zivqpbjpm065ha5wpr13z2"))))
1169 (build-system python-build-system)
1170 (arguments
1171 `(#:phases
1172 (modify-phases %standard-phases
1173 (add-after
1174 'unpack 'patch-test-suite
1175 (lambda _
1176 ;; The text-file needs to be opened in binary mode for Python 3,
1177 ;; so patch in the "b"
1178 (substitute* "Tests/tests.py"
1179 (("pdftext_file = open\\(.* 'crazyones.txt'\\), 'r" line)
1180 (string-append line "b")))
1181 #t))
1182 (replace 'check
1183 (lambda _
1184 (invoke "python" "-m" "unittest" "Tests.tests"))))))
1185 (home-page "http://mstamy2.github.com/PyPDF2")
1186 (synopsis "Pure Python PDF toolkit")
1187 (description "PyPDF2 is a pure Python PDF library capable of:
1188
1189 @enumerate
1190 @item extracting document information (title, author, …)
1191 @item splitting documents page by page
1192 @item merging documents page by page
1193 @item cropping pages
1194 @item merging multiple pages into a single page
1195 @item encrypting and decrypting PDF files
1196 @end enumerate
1197
1198 By being pure Python, it should run on any Python platform without any
1199 dependencies on external libraries. It can also work entirely on
1200 @code{StringIO} objects rather than file streams, allowing for PDF
1201 manipulation in memory. It is therefore a useful tool for websites that
1202 manage or manipulate PDFs.")
1203 (license license:bsd-3)))
1204
1205 (define-public python2-pypdf2
1206 (package-with-python2 python-pypdf2))
1207
1208 (define-public python2-pypdf
1209 (package
1210 (name "python2-pypdf")
1211 (version "1.13")
1212 (source (origin
1213 (method url-fetch)
1214 (uri (pypi-uri "pyPdf" version))
1215 (sha256
1216 (base32
1217 "0fqfvamir7k41w84c73rghzkiv891gdr17q5iz4hgbf6r71y9v9s"))))
1218 (build-system python-build-system)
1219 (arguments
1220 `(#:tests? #f ; no tests
1221 #:python ,python-2))
1222 (home-page "http://pybrary.net/pyPdf/")
1223 (synopsis "Pure Python PDF toolkit")
1224 (description "PyPDF2 is a pure Python PDF toolkit.
1225
1226 Note: This module isn't maintained anymore. For new projects please use
1227 python-pypdf2 instead.")
1228 (license license:bsd-3)))
1229
1230 (define-public pdfarranger
1231 (package
1232 (name "pdfarranger")
1233 (version "1.7.0")
1234 (source
1235 (origin
1236 (method git-fetch)
1237 (uri (git-reference
1238 (url "https://github.com/jeromerobert/pdfarranger")
1239 (commit version)))
1240 (file-name (git-file-name name version))
1241 (sha256
1242 (base32 "0dmgmvpghsm938iznalbg8h8k17a5h3q466yfc67mcll428n4nx3"))))
1243 (build-system python-build-system)
1244 (arguments
1245 '(#:tests? #f ;no tests
1246 #:phases (modify-phases %standard-phases
1247 (add-after 'install 'wrap-for-typelib
1248 (lambda* (#:key inputs outputs #:allow-other-keys)
1249 (let* ((out (assoc-ref outputs "out"))
1250 (program (string-append out "/bin/pdfarranger")))
1251 (wrap-program program
1252 `("GI_TYPELIB_PATH" ":" prefix
1253 (,(getenv "GI_TYPELIB_PATH"))))
1254 #t))))))
1255 (native-inputs
1256 `(("intltool" ,intltool)
1257 ("python-distutils-extra" ,python-distutils-extra)))
1258 (propagated-inputs
1259 `(("gtk+" ,gtk+)
1260 ("poppler" ,poppler)
1261 ("python-dateutil" ,python-dateutil)
1262 ("python-pikepdf" ,python-pikepdf)
1263 ("python-pycairo" ,python-pycairo)
1264 ("python-pygobject" ,python-pygobject)))
1265 (home-page "https://github.com/jeromerobert/pdfarranger")
1266 (synopsis "Merge, split and re-arrange pages from PDF documents")
1267 (description
1268 "PDF Arranger is a small application which allows one to merge or split
1269 PDF documents and rotate, crop and rearrange their pages using an interactive
1270 and intuitive graphical interface.
1271
1272 PDF Arranger was formerly known as PDF-Shuffler.")
1273 (license license:gpl3+)))
1274
1275 (define-public pdfposter
1276 (package
1277 (name "pdfposter")
1278 (version "0.7.post1")
1279 (source (origin
1280 (method url-fetch)
1281 (uri (pypi-uri "pdftools.pdfposter" version))
1282 (sha256
1283 (base32
1284 "0c1avpbr9q53yzq5ar2x485rmp9d0l3z27aham32bg7gplzd7w0j"))))
1285 (build-system python-build-system)
1286 (arguments
1287 `(#:tests? #f)) ; test-suite not included in source archive
1288 (inputs
1289 `(("python-pypdf2" ,python-pypdf2)))
1290 (home-page "https://pythonhosted.org/pdftools.pdfposter/")
1291 (synopsis "Scale and tile PDF images/pages to print on multiple pages")
1292 (description "@command{pdfposter} can be used to create a large poster by
1293 building it from multiple pages and/or printing it on large media. It expects
1294 as input a PDF file, normally printing on a single page. The output is again
1295 a PDF file, maybe containing multiple pages together building the poster. The
1296 input page will be scaled to obtain the desired size.
1297
1298 This is much like @command{poster} does for Postscript files, but working with
1299 PDF. Since sometimes @command{poster} does not like your files converted from
1300 PDF. Indeed @command{pdfposter} was inspired by @command{poster}.")
1301 (license license:gpl3+)))
1302
1303 (define-public pdfgrep
1304 (package
1305 (name "pdfgrep")
1306 (version "2.1.2")
1307 (source
1308 (origin
1309 (method url-fetch)
1310 (uri (string-append "https://pdfgrep.org/download/"
1311 name "-" version ".tar.gz"))
1312 (sha256
1313 (base32
1314 "1fia10djcxxl7n9jw2prargw4yzbykk6izig2443ycj9syhxrwqf"))))
1315 (build-system gnu-build-system)
1316 (native-inputs
1317 `(("pkg-config" ,pkg-config)))
1318 (inputs
1319 `(("libgcrypt" ,libgcrypt)
1320 ("pcre" ,pcre)
1321 ("poppler" ,poppler)))
1322 (home-page "https://pdfgrep.org")
1323 (synopsis "Command-line utility to search text in PDF files")
1324 (description
1325 "Pdfgrep searches in pdf files for strings matching a regular expression.
1326 Support some GNU grep options as file name output, page number output,
1327 optional case insensitivity, count occurrences, color highlights and search in
1328 multiple files.")
1329 (license license:gpl2+)))
1330
1331 (define-public pdfpc
1332 (package
1333 (name "pdfpc")
1334 (version "4.4.1")
1335 (source
1336 (origin
1337 (method git-fetch)
1338 (uri (git-reference
1339 (url "https://github.com/pdfpc/pdfpc")
1340 (commit (string-append "v" version))))
1341 (file-name (git-file-name name version))
1342 (sha256
1343 (base32 "11n925c5jj3yfwnqkgxzqrmsrpqh8ls1g4idmqqzpsanpam1xvna"))))
1344 (build-system cmake-build-system)
1345 (arguments '(#:tests? #f)) ; no test target
1346 (inputs
1347 `(("cairo" ,cairo)
1348 ("gtk+" ,gtk+)
1349 ("gstreamer" ,gstreamer)
1350 ("gst-plugins-base" ,gst-plugins-base)
1351 ("libgee" ,libgee)
1352 ("poppler" ,poppler)
1353 ("pango" ,pango)
1354 ("vala" ,vala)))
1355 (native-inputs
1356 `(("pkg-config" ,pkg-config)))
1357 (home-page "https://pdfpc.github.io/")
1358 (synopsis "Presenter console with multi-monitor support for PDF files")
1359 (description
1360 "pdfpc is a presentation viewer application which uses multi-monitor
1361 output to provide meta information to the speaker during the presentation. It
1362 is able to show a normal presentation window on one screen, while showing a
1363 more sophisticated overview on the other one providing information like a
1364 picture of the next slide, as well as the left over time till the end of the
1365 presentation. The input files processed by pdfpc are PDF documents.")
1366 (license license:gpl2+)))
1367
1368 (define-public paps
1369 (package
1370 (name "paps")
1371 (version "0.7.1")
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (string-append "https://github.com/dov/paps/releases/download/v"
1376 version "/paps-" version ".tar.gz"))
1377 (sha256
1378 (base32 "1z1w1fg2bvb8p92n1jlpqp3n9mq42szb2mqhh4xqmmnmfcdkpi9s"))))
1379 (build-system gnu-build-system)
1380 (inputs
1381 `(("pango" ,pango)))
1382 (native-inputs
1383 `(("intltool" ,intltool)
1384 ("pkg-config" ,pkg-config)))
1385 (home-page "https://github.com/dov/paps")
1386 (synopsis "Pango to PostScript converter")
1387 (description
1388 "Paps reads a UTF-8 encoded file and generates a PostScript language
1389 rendering of the file through the Pango Cairo back end.")
1390 (license license:lgpl2.0+)))
1391
1392 (define-public stapler
1393 (package
1394 (name "stapler")
1395 (version "1.0.0")
1396 (source
1397 (origin
1398 (method url-fetch)
1399 (uri (pypi-uri "stapler" version))
1400 (sha256
1401 (base32
1402 "0b2lbm3f79cdxcsagwhzihbzwahjabxqmbws0c8ki25gpdnygdd7"))))
1403 (build-system python-build-system)
1404 (arguments
1405 '(#:phases
1406 (modify-phases %standard-phases
1407 (add-after 'unpack 'fix-more-itertools-version-requirement
1408 (lambda _
1409 ;; Tests require an version of the more-itertools module older
1410 ;; than the one we have packaged.
1411 (substitute* "setup.py"
1412 (("more-itertools>=2\\.2,<6\\.0\\.0") "more-itertools>=2.2"))
1413 #t)))))
1414 (propagated-inputs
1415 `(("python-more-itertools" ,python-more-itertools)
1416 ("python-pypdf2" ,python-pypdf2)))
1417 (home-page "https://github.com/hellerbarde/stapler")
1418 (synopsis "PDF manipulation tool")
1419 (description "Stapler is a pure Python alternative to PDFtk, a tool for
1420 manipulating PDF documents from the command line. It supports
1421
1422 @itemize
1423 @item cherry-picking pages and concatenating them into a new file
1424 @item splitting a PDF document into single pages each in its own file
1425 @item merging PDF documents with their pages interleaved
1426 @item displaying metadata in a PDF document
1427 @item displaying the mapping between logical and physical page numbers
1428 @end itemize")
1429 (license license:bsd-3)))
1430
1431 (define-public weasyprint
1432 (package
1433 (name "weasyprint")
1434 (version "52.1")
1435 (source
1436 (origin
1437 (method git-fetch)
1438 (uri (git-reference
1439 (url "https://github.com/FelixSchwarz/WeasyPrint")
1440 (commit (string-append "v" version))))
1441 (file-name (git-file-name name version))
1442 (sha256
1443 (base32
1444 "0rcj9yah3bp6bbvkmny3w4csx4l5v49lc7mrk29g0x77qnwswjy7"))))
1445 (build-system python-build-system)
1446 (arguments
1447 `(#:phases
1448 (modify-phases %standard-phases
1449 (add-after 'unpack 'patch-library-paths
1450 (lambda* (#:key inputs #:allow-other-keys)
1451 (let ((fontconfig (assoc-ref inputs "fontconfig"))
1452 (glib (assoc-ref inputs "glib"))
1453 (pango (assoc-ref inputs "pango"))
1454 (pangoft2 (assoc-ref inputs "pangoft2")))
1455 (substitute* "weasyprint/fonts.py"
1456 (("'fontconfig'")
1457 (format #f "'~a/lib/libfontconfig.so'" fontconfig))
1458 (("'pangoft2-1.0'")
1459 (format #f "'~a/lib/libpangoft2-1.0.so'" pango)))
1460 (substitute* "weasyprint/text.py"
1461 (("'gobject-2.0'")
1462 (format #f "'~a/lib/libgobject-2.0.so'" glib))
1463 (("'pango-1.0'")
1464 (format #f "'~a/lib/libpango-1.0.so'" pango))
1465 (("'pangocairo-1.0'")
1466 (format #f "'~a/lib/libpangocairo-1.0.so'" pango)))
1467 #t)))
1468 (add-after 'unpack 'disable-linters
1469 ;; Their check fails; none of our business.
1470 (lambda _
1471 (substitute* "setup.cfg"
1472 ((".*pytest-flake8.*") "")
1473 ((".*pytest-isort.*") "")
1474 (("--flake8") "")
1475 (("--isort") ""))
1476 #t))
1477 (add-before 'check 'register-dejavu-font
1478 (lambda* (#:key inputs #:allow-other-keys)
1479 ;; TODO: fix FreeType so that fonts found in XDG_DATA_DIRS are
1480 ;; honored.
1481 (let* ((HOME "/tmp")
1482 (dejavu (assoc-ref inputs "font-dejavu"))
1483 (fonts-dir (string-append HOME "/.fonts")))
1484 (setenv "HOME" HOME)
1485 (mkdir-p fonts-dir)
1486 (symlink (string-append dejavu "/share/fonts/truetype")
1487 (string-append fonts-dir "/truetype"))
1488 (invoke "fc-cache" "-rv")))))))
1489 (inputs
1490 `(("fontconfig" ,fontconfig)
1491 ("glib" ,glib)
1492 ("pango" ,pango)))
1493 (propagated-inputs
1494 `(("gdk-pixbuf" ,gdk-pixbuf)
1495 ("python-cairocffi" ,python-cairocffi)
1496 ("python-cairosvg" ,python-cairosvg)
1497 ("python-cffi" ,python-cffi)
1498 ("python-cssselect2" ,python-cssselect2)
1499 ("python-html5lib" ,python-html5lib)
1500 ("python-pyphen" ,python-pyphen)
1501 ("python-tinycss2" ,python-tinycss2)))
1502 (native-inputs
1503 `(("font-dejavu" ,font-dejavu) ;tests depend on it
1504 ("python-pytest-cov" ,python-pytest-cov)
1505 ("python-pytest-runner" ,python-pytest-runner)))
1506 (home-page "https://weasyprint.org/")
1507 (synopsis "Document factory for creating PDF files from HTML")
1508 (description "WeasyPrint helps web developers to create PDF documents. It
1509 turns simple HTML pages into gorgeous statistical reports, invoices, tickets,
1510 etc.
1511
1512 From a technical point of view, WeasyPrint is a visual rendering engine for
1513 HTML and CSS that can export to PDF and PNG. It aims to support web standards
1514 for printing.
1515
1516 It is based on various libraries but not on a full rendering engine like
1517 WebKit or Gecko. The CSS layout engine is written in Python, designed for
1518 pagination, and meant to be easy to hack on. Weasyprint can also be used as a
1519 python library.
1520
1521 Keywords: html2pdf, htmltopdf")
1522 (license license:bsd-3)))