diff options
author | Meiyo Peng <meiyo.peng@gmail.com> | 2018-10-18 14:24:20 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2018-10-25 21:12:19 +0800 |
commit | bf0da63aaeb99445de362effe77c72ff9aff942d (patch) | |
tree | 4e3ede90a15dd908b0502975914008dcb06b802b /gnu/packages/lxqt.scm | |
parent | a98000a4625a075f3c47898b9c0fdf570f7c0024 (diff) | |
download | patches-bf0da63aaeb99445de362effe77c72ff9aff942d.tar patches-bf0da63aaeb99445de362effe77c72ff9aff942d.tar.gz |
gnu: Add lxqt-policykit.
* gnu/packages/lxqt.scm (lxqt-policykit): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu/packages/lxqt.scm')
-rw-r--r-- | gnu/packages/lxqt.scm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index 31b7a5ab35..7cc077ee1f 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -527,6 +527,50 @@ according to the Desktop Notifications Specification.") (description "lxqt-panel represents the taskbar of LXQt.") (license license:lgpl2.1+))) +(define-public lxqt-policykit + (package + (name "lxqt-policykit") + (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 "1d97fys6625nk4q6irp0jhsbk30xi7idnii1f3vrrrdcl2cahagp")))) + (build-system cmake-build-system) + (inputs + `(("kwindowsystem" ,kwindowsystem) + ("liblxqt" ,liblxqt) + ("libqtxdg" ,libqtxdg) + ("pcre" ,pcre) + ("polkit-qt" ,polkit-qt) + ("qtbase" ,qtbase) + ("qtsvg" ,qtsvg) + ("qtx11extras" ,qtx11extras))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("polkit" ,polkit) + ("lxqt-build-tools" ,lxqt-build-tools) + ("qttools" ,qttools))) + (arguments + '(#:tests? #f ; no test target + #:configure-flags + '("-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 "The LXQt PolicyKit agent") + (description "lxqt-policykit is the polkit authentification agent of +LXQt.") + (license license:lgpl2.1+))) + (define-public lxqt-runner (package (name "lxqt-runner") |