1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-23 10:40:31 +02:00

gnu: Add poppler-next.

* gnu/packages/pdf.scm (poppler-next): New variable.
This commit is contained in:
Mathieu Othacehe
2022-09-14 18:06:12 +02:00
parent 29d52a56f2
commit a3de623e4a

View File

@@ -311,6 +311,25 @@ When present, Poppler is able to correctly render CJK and Cyrillic text.")
(license (list license:bsd-3
license:gpl2))))
;; XXX: Remove it on core-updates. It is only needed for evince 42.3 that
;; requires a recent poppler.
(define-public poppler-next
(package/inherit poppler
(name "poppler-next")
(version "22.09.0")
(source (origin
(method url-fetch)
(uri (string-append "https://poppler.freedesktop.org/poppler-"
version ".tar.xz"))
(sha256
(base32
"0bhyli95h3dkirjc0ibh08s4nim6rn7f38sbfzdwln8k454gga6p"))))
(native-inputs
(list pkg-config
`(,glib "bin") ; glib-mkenums, etc.
gobject-introspection
python)) ))
(define-public poppler-qt5
(package/inherit poppler
(name "poppler-qt5")