gnu: Add lxqt-powermanagement.

* gnu/packages/lxqt.scm (lxqt-powermanagement): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Meiyo Peng 2018-10-18 14:38:02 +08:00 committed by 宋文武
parent ca302c3e8c
commit 643961bbc6
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 44 additions and 0 deletions

View File

@ -604,6 +604,50 @@ of other programs.")
LXQt.")
(license license:lgpl2.1+)))
(define-public lxqt-powermanagement
(package
(name "lxqt-powermanagement")
(version "0.13.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
version "/" name "-" version ".tar.xz"))
(sha256
(base32 "15nvdypyjwnp7k3d2pkhdbmaqb3ccacmh95rbdbc5mr7yrjy9613"))))
(build-system cmake-build-system)
(inputs
`(("kidletime" ,kidletime)
("kwindowsystem" ,kwindowsystem)
("liblxqt" ,liblxqt)
("libqtxdg" ,libqtxdg)
("qtbase" ,qtbase)
("qtsvg" ,qtsvg)
("qtx11extras" ,qtx11extras)
("solid" ,solid)))
(native-inputs
`(("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")
#: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 "Power management module for LXQt")
(description "lxqt-powermanagement is providing tools to monitor power
management events and optionally trigger actions like e. g. shut down a system
when laptop batteries are low on power.")
(license license:lgpl2.1+)))
(define-public lxqt-runner
(package
(name "lxqt-runner")