mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:19:18 -05:00
gnu: Add compton-conf.
* gnu/packages/lxqt.scm (compton-conf): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
9886134cc6
commit
32b74b7028
1 changed files with 39 additions and 0 deletions
|
@ -47,6 +47,7 @@ (define-module (gnu packages lxqt)
|
||||||
#:use-module (gnu packages polkit)
|
#:use-module (gnu packages polkit)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
|
#:use-module (gnu packages textutils)
|
||||||
#:use-module (gnu packages xdisorg)
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
|
@ -900,6 +901,44 @@ (define-public pcmanfm-qt
|
||||||
|
|
||||||
;; Extra
|
;; Extra
|
||||||
|
|
||||||
|
(define-public compton-conf
|
||||||
|
(package
|
||||||
|
(name "compton-conf")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
|
||||||
|
version "/" name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0q3yx2a6wf8yahrwgvhmv9sd7gmrhid528vrqy04dg8m5cx1bjci"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("libconfig" ,libconfig)
|
||||||
|
("qtbase" ,qtbase)))
|
||||||
|
(native-inputs
|
||||||
|
`(("lxqt-build-tools" ,lxqt-build-tools)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("qttools" ,qttools)))
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f ; no tests
|
||||||
|
#:configure-flags
|
||||||
|
;; TODO: prefetch translations files from 'lxqt-l10n'.
|
||||||
|
'("-DPULL_TRANSLATIONS=NO")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-source
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("autostart/CMakeLists.txt")
|
||||||
|
(("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
|
||||||
|
"DESTINATION \"${CMAKE_INSTALL_PREFIX}/etc/xdg"))
|
||||||
|
#t)))))
|
||||||
|
(home-page "https://lxqt.org/")
|
||||||
|
(synopsis "GUI configuration tool for compton X composite manager")
|
||||||
|
(description "@code{compton-conf} is a configuration tool for X composite
|
||||||
|
manager Compton.")
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public lximage-qt
|
(define-public lximage-qt
|
||||||
(package
|
(package
|
||||||
(name "lximage-qt")
|
(name "lximage-qt")
|
||||||
|
|
Loading…
Reference in a new issue