aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2025-02-22 15:15:32 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2025-02-22 15:18:25 +0100
commit0521c109b22eb360982fc3aab11207e4002a372a (patch)
tree7b268278c96b05d6f733fd8de74f0d4b3d8c5b3c
parent5ff550ba4c799edfbd05068ae261baeae0116e4c (diff)
downloadguix-0521c109b22eb360982fc3aab11207e4002a372a.tar.gz
guix-0521c109b22eb360982fc3aab11207e4002a372a.zip
gnu: Add qimgv.
* gnu/packages/image-viewers.scm (qimgv): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Change-Id: I474b6a5d453eee6a91405bf5f7eb1aa908e665b7
-rw-r--r--gnu/packages/image-viewers.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index e726e3bd4b..1dbc410a58 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -358,6 +358,36 @@ It is the default image viewer on LXDE desktop environment.")
(home-page "https://lxde.sourceforge.net/gpicview/")
(license license:gpl2+)))
+(define-public qimgv
+ (package
+ (name "qimgv")
+ (version "1.0.3-alpha")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/easymodo/qimgv")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05mk3vdqk4vzg8phqfkxy167iqycahlw1n69nx5myfp5rjii4wvw"))))
+ (build-system cmake-build-system)
+ (arguments (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list exiv2
+ mpv
+ opencv
+ pkg-config
+ qtbase
+ qtsvg
+ qttools))
+ (home-page "https://github.com/easymodo/qimgv")
+ (synopsis "Qt image viewer with optional video support")
+ (description
+ "Qimgv is a configurable Qt image viewer, with optional video support.")
+ (license license:gpl3+)))
+
(define-public sxiv
(package
(name "sxiv")