diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-04-06 21:18:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-04-22 11:55:48 +0200 |
commit | abe9b729b45553a97ace96f3596fca4d73103811 (patch) | |
tree | 24b85d766a48a36a7da2bac19e35c1186ad58c0e /gnu/packages/image-viewers.scm | |
parent | 75cfbf1985f83f7b4b83a043380ff456cc620af2 (diff) | |
download | guix-abe9b729b45553a97ace96f3596fca4d73103811.tar.gz |
gnu: Add qpageview.
* gnu/packages/image-viewers.scm (qpageview): New variable.
Diffstat (limited to 'gnu/packages/image-viewers.scm')
-rw-r--r-- | gnu/packages/image-viewers.scm | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index d0b7e93a84..96a3fa6615 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2017 nee <nee-git@hidamari.blue> ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2019, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr> +;;; Copyright © 2019, 2022, 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2019, 2020, 2022 Guy Fleury Iteriteka <gfleury@disroot.org> ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2020 Peng Mei Yu <pengmeiyu@riseup.net> @@ -667,6 +667,31 @@ including CBZ, CB7, CBT, LHA. For PDF support, install the @emph{mupdf} package.") (license license:gpl2+))) +(define-public qpageview + (package + (name "qpageview") + (version "0.6.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/frescobaldi/qpageview") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0xdhiglzqxyp05blp66l52nbzbpn10hmdm2idhncz6pf7qw16lsw")))) + (build-system python-build-system) + (home-page "https://qpageview.org/") + (synopsis "Page based document viewer widget for Qt5/PyQt5") + (inputs + (list python-pyqt qtbase-5)) + (description + "@code{qpageview} provides a page based document viewer widget for Qt5 +and PyQt5. It has a flexible architecture potentionally supporting many +formats. Currently, it supports SVG documents, images, and, using the +Poppler-Qt5 binding, PDF documents.") + (license license:gpl3+))) + (define-public qview (package (name "qview") |