gnu: Add lximage-qt.
* gnu/packages/lxqt.scm (lximage-qt): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>master
parent
26127ebb97
commit
604bdae7e5
|
@ -900,6 +900,39 @@ LXDE.")
|
|||
|
||||
;; Extra
|
||||
|
||||
(define-public lximage-qt
|
||||
(package
|
||||
(name "lximage-qt")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
|
||||
version "/" name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1mwjh6lrjayr9snsmabkl5qs4xm6d27mfz8k3jxfm5dk3pjj1b0w"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs
|
||||
`(("libexif" ,libexif)
|
||||
("libfm-qt" ,libfm-qt)
|
||||
("qtbase" ,qtbase)
|
||||
("qtsvg" ,qtsvg)
|
||||
("qtx11extras" ,qtx11extras)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("lxqt-build-tools" ,lxqt-build-tools)
|
||||
("qttools" ,qttools)))
|
||||
(arguments
|
||||
'(#:tests? #f ; no tests
|
||||
#:configure-flags
|
||||
;; TODO: prefetch translations files from 'lxqt-l10n'.
|
||||
'("-DPULL_TRANSLATIONS=NO")))
|
||||
(home-page "https://lxqt.org/")
|
||||
(synopsis "The image viewer and screenshot tool for lxqt")
|
||||
(description "LXImage-Qt is the Qt port of LXImage, a simple and fast
|
||||
image viewer.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public pavucontrol-qt
|
||||
(package
|
||||
(name "pavucontrol-qt")
|
||||
|
|
Reference in New Issue