gnu: liblxqt: Update to 0.14.1.
[jackhill/guix/guix.git] / gnu / packages / lxqt.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
4 ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
6 ;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
7 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
8 ;;; Copyright © 2018, 2019 Meiyo Peng <meiyo@riseup.net>
9 ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
10 ;;;
11 ;;; This file is part of GNU Guix.
12 ;;;
13 ;;; GNU Guix is free software; you can redistribute it and/or modify it
14 ;;; under the terms of the GNU General Public License as published by
15 ;;; the Free Software Foundation; either version 3 of the License, or (at
16 ;;; your option) any later version.
17 ;;;
18 ;;; GNU Guix is distributed in the hope that it will be useful, but
19 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;;; GNU General Public License for more details.
22 ;;;
23 ;;; You should have received a copy of the GNU General Public License
24 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
25
26 (define-module (gnu packages lxqt)
27 #:use-module (guix download)
28 #:use-module (guix git-download)
29 #:use-module ((guix licenses) #:prefix license:)
30 #:use-module (guix packages)
31 #:use-module (guix utils)
32 #:use-module (guix build-system cmake)
33 #:use-module (guix build-system gnu)
34 #:use-module (guix build-system trivial)
35 #:use-module (gnu packages)
36 #:use-module (gnu packages admin)
37 #:use-module (gnu packages compression)
38 #:use-module (gnu packages documentation)
39 #:use-module (gnu packages compton)
40 #:use-module (gnu packages fonts)
41 #:use-module (gnu packages freedesktop)
42 #:use-module (gnu packages glib)
43 #:use-module (gnu packages gnome)
44 #:use-module (gnu packages gtk)
45 #:use-module (gnu packages image)
46 #:use-module (gnu packages kde-frameworks)
47 #:use-module (gnu packages kde-plasma)
48 #:use-module (gnu packages linux)
49 #:use-module (gnu packages perl)
50 #:use-module (gnu packages lxde)
51 #:use-module (gnu packages maths)
52 #:use-module (gnu packages openbox)
53 #:use-module (gnu packages pcre)
54 #:use-module (gnu packages photo)
55 #:use-module (gnu packages pkg-config)
56 #:use-module (gnu packages polkit)
57 #:use-module (gnu packages pulseaudio)
58 #:use-module (gnu packages qt)
59 #:use-module (gnu packages textutils)
60 #:use-module (gnu packages xdisorg)
61 #:use-module (gnu packages xml)
62 #:use-module (gnu packages xorg))
63
64
65 ;; Third party libraries
66
67 (define-public libdbusmenu-qt
68 (package
69 (name "libdbusmenu-qt")
70 (version "0.9.3+16.04.20160218-0ubuntu1")
71 (source
72 (origin
73 (method git-fetch)
74 ;; Download from github rather than launchpad because launchpad trunk
75 ;; tarball hash is not deterministic.
76 (uri (git-reference
77 (url "https://github.com/unity8-team/libdbusmenu-qt.git")
78 (commit version)))
79 (file-name (git-file-name name version))
80 (sha256
81 (base32 "0b7ii1cvmpcyl79gqal9c3va9m55h055s4hx7fpxkhhqs9463ggg"))))
82 (build-system cmake-build-system)
83 (arguments
84 ;; XXX: Tests require a dbus session and some icons.
85 '(#:tests? #f))
86 (native-inputs
87 `(("doxygen" ,doxygen)))
88 (inputs
89 `(("qtbase" ,qtbase)))
90 (home-page "https://launchpad.net/libdbusmenu-qt")
91 (synopsis "Qt implementation of the DBusMenu spec")
92 (description "This library provides a Qt implementation of the DBusMenu
93 protocol. The DBusMenu protocol makes it possible for applications to export
94 and import their menus over DBus.")
95 (license license:lgpl2.1+)))
96
97 (define-public libstatgrab
98 (package
99 (name "libstatgrab")
100 (version "0.91")
101 (source
102 (origin
103 (method url-fetch)
104 (uri (string-append "https://ftp.i-scream.org/pub/i-scream/libstatgrab/"
105 name "-" version ".tar.gz"))
106 (sha256
107 (base32 "1azinx2yzs442ycwq6p15skl3mscmqj7fd5hq7fckhjp92735s83"))))
108 (build-system gnu-build-system)
109 (arguments
110 '(#:configure-flags '("--enable-tests")))
111 (native-inputs
112 ;; For testing.
113 `(("perl" ,perl)))
114 (home-page "https://www.i-scream.org/libstatgrab/")
115 (synopsis "Provides access to statistics about the system")
116 (description "libstatgrab is a library that provides cross platform access
117 to statistics about the system on which it's run.")
118 ;; Libraries are under LGPL2.1+, and programs under GPLv2+.
119 (license license:gpl2+)))
120
121
122 ;; Base
123
124 (define-public lxqt-build-tools
125 (package
126 (name "lxqt-build-tools")
127 (version "0.6.0")
128 (source
129 (origin
130 (method url-fetch)
131 (uri (string-append "https://github.com/lxqt/lxqt-build-tools/releases"
132 "/download/" version
133 "/lxqt-build-tools-" version ".tar.xz"))
134 (sha256
135 (base32 "0n0p0mf12n9f7zm2592779rpqrbcamfdz87nnjb8j058bc8g3214"))))
136 (build-system cmake-build-system)
137 (arguments
138 `(#:tests? #f ; no tests
139 #:configure-flags
140 ;; 'startlxqt' will add LXQT_DATA_DIR to XDG_DATA_DIRS,
141 ;; LXQT_ETC_XDG_DIR to XDG_CONFIG_DIRS, and 'lxqt-about' will report
142 ;; LXQT_ETC_XDG_DIR in its "Technical Info".
143 '("-DLXQT_DATA_DIR=/run/current-system/profile/share"
144 "-DLXQT_ETC_XDG_DIR=/run/current-system/profile/etc/xdg")))
145 (native-inputs
146 `(("pkg-config" ,pkg-config)
147 ("glib" ,glib)))
148 (inputs
149 `(("qtbase" ,qtbase)))
150 (synopsis "LXQt Build tools")
151 (description
152 "Lxqt-build-tools is providing several tools needed to build LXQt
153 itself as well as other components maintained by the LXQt project.")
154 (home-page "https://lxqt.org")
155 (license license:lgpl2.1+)))
156
157 (define-public libqtxdg
158 (package
159 (name "libqtxdg")
160 (version "3.3.1")
161 (source
162 (origin
163 (method url-fetch)
164 (uri (string-append
165 "https://github.com/lxqt/libqtxdg/releases/download/"
166 version "/libqtxdg-" version ".tar.xz"))
167 (sha256
168 (base32 "1mnnq8vbf5xjlrzajzfkay0yzzxri0zz0xi8x8rmxpw38xmglq8h"))))
169 (build-system cmake-build-system)
170 (arguments
171 '(#:configure-flags
172 '("-DBUILD_TESTS=ON"
173 "-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=lib/qt5/plugins/iconengines")
174 #:phases
175 (modify-phases %standard-phases
176 (add-before 'check 'pre-check
177 (lambda _
178 ;; Run the tests offscreen.
179 (setenv "QT_QPA_PLATFORM" "offscreen")
180 #t)))))
181 (propagated-inputs
182 ;; required by Qt5XdgIconLoader.pc
183 `(("qtbase" ,qtbase)
184 ("qtsvg" ,qtsvg)))
185 (native-inputs
186 `(("lxqt-build-tools" ,lxqt-build-tools)))
187 (home-page "https://github.com/lxqt/libqtxdg")
188 (synopsis "Qt implementation of freedesktop.org xdg specifications")
189 (description "Libqtxdg implements the freedesktop.org xdg specifications
190 in Qt.")
191 (license license:lgpl2.1+)))
192
193 (define-public liblxqt
194 (package
195 (name "liblxqt")
196 (version "0.14.1")
197 (source
198 (origin
199 (method url-fetch)
200 (uri (string-append
201 "https://github.com/lxqt/" name "/releases/download/"
202 version "/" name "-" version ".tar.xz"))
203 (sha256
204 (base32 "1gb922npf6nw4w3nkvh4czk8xmdzzqkzq3zgl1h303fjaib359qs"))))
205 (build-system cmake-build-system)
206 (arguments
207 `(#:tests? #f ; no tests
208 #:phases
209 (modify-phases %standard-phases
210 (add-after 'unpack 'patch-source
211 (lambda _
212 (substitute* "CMakeLists.txt"
213 (("DESTINATION \"\\$\\{POLKITQT-1_POLICY_FILES_INSTALL_DIR\\}")
214 "DESTINATION \"share/polkit-1/actions"))
215 #t))
216 (add-after 'unpack 'patch-translations-dir
217 (lambda* (#:key outputs #:allow-other-keys)
218 (substitute* "CMakeLists.txt"
219 (("\\$\\{LXQT_TRANSLATIONS_DIR\\}")
220 (string-append (assoc-ref outputs "out")
221 "/share/lxqt/translations")))
222 #t)))))
223 (inputs
224 `(("kwindowsystem" ,kwindowsystem)
225 ("libqtxdg" ,libqtxdg)
226 ("libxscrnsaver" ,libxscrnsaver)
227 ("polkit-qt" ,polkit-qt)
228 ("qtsvg" ,qtsvg)
229 ("qtx11extras" ,qtx11extras)))
230 (native-inputs
231 `(("lxqt-build-tools" ,lxqt-build-tools)
232 ("qttools" ,qttools)))
233 (home-page "https://lxqt.org/")
234 (synopsis "Core utility library for all LXQt components")
235 (description "liblxqt provides the basic libraries shared by the
236 components of the LXQt desktop environment.")
237 (license license:lgpl2.1+)))
238
239 (define-public libsysstat
240 (package
241 (name "libsysstat")
242 (version "0.4.1")
243 (source
244 (origin
245 (method url-fetch)
246 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
247 version "/" name "-" version ".tar.xz"))
248 (sha256
249 (base32 "0ngz8v3bixsdg96d5ipcyxd6nsrg52974xdxy9rnimahlv1yaxn3"))))
250 (build-system cmake-build-system)
251 (arguments '(#:tests? #f)) ; no tests
252 (inputs
253 `(("qtbase" ,qtbase)))
254 (native-inputs
255 `(("lxqt-build-tools" ,lxqt-build-tools)))
256 (home-page "https://lxqt.org/")
257 (synopsis "Library used to query system info and statistics")
258 (description "libsysstat is a library to query system information like CPU
259 and memory usage or network traffic.")
260 (license license:lgpl2.1+)))
261
262
263 ;; Core
264
265 (define-public lxqt-about
266 (package
267 (name "lxqt-about")
268 (version "0.13.0")
269 (source
270 (origin
271 (method url-fetch)
272 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
273 version "/" name "-" version ".tar.xz"))
274 (sha256
275 (base32 "08imj7p77ifzfxnn8c482mhrvfx9gi0rb43ab5rw1rkmfvax2n5w"))))
276 (build-system cmake-build-system)
277 (inputs
278 `(("kwindowsystem" ,kwindowsystem)
279 ("liblxqt" ,liblxqt)
280 ("libqtxdg" ,libqtxdg)
281 ("qtbase" ,qtbase)
282 ("qtsvg" ,qtsvg)
283 ("qtx11extras" ,qtx11extras)))
284 (native-inputs
285 `(("lxqt-build-tools" ,lxqt-build-tools)
286 ("qttools" ,qttools)))
287 (arguments
288 '(#:tests? #f ; no tests
289 #:configure-flags
290 ;; TODO: prefetch translations files from 'lxqt-l10n'.
291 '("-DPULL_TRANSLATIONS=NO")))
292 (home-page "https://lxqt.org")
293 (synopsis "Provides information about LXQt and the system")
294 (description "lxqt-about is a dialogue window providing information about
295 LXQt and the system it's running on.")
296 (license license:lgpl2.1+)))
297
298 (define-public lxqt-admin
299 (package
300 (name "lxqt-admin")
301 (version "0.13.0")
302 (source
303 (origin
304 (method url-fetch)
305 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
306 version "/" name "-" version ".tar.xz"))
307 (sha256
308 (base32 "0qvpv668ja83ydbdrlal1596xhag3xlkbd6qlh9xwdpb7nysvns1"))))
309 (build-system cmake-build-system)
310 (inputs
311 `(("kwindowsystem" ,kwindowsystem)
312 ("liblxqt" ,liblxqt)
313 ("libqtxdg" ,libqtxdg)
314 ("polkit-qt" ,polkit-qt)
315 ("qtsvg" ,qtsvg)
316 ("qtx11extras" ,qtx11extras)))
317 (native-inputs
318 `(("lxqt-build-tools" ,lxqt-build-tools)
319 ("qttools" ,qttools)))
320 (arguments
321 '(#:tests? #f ; no tests
322 #:configure-flags
323 ;; TODO: prefetch translations files from 'lxqt-l10n'.
324 '("-DPULL_TRANSLATIONS=NO")
325 #:phases
326 (modify-phases %standard-phases
327 (add-after 'unpack 'patch-source
328 (lambda _
329 (substitute* "lxqt-admin-user/CMakeLists.txt"
330 (("DESTINATION \"\\$\\{POLKITQT-1_POLICY_FILES_INSTALL_DIR\\}")
331 "DESTINATION \"share/polkit-1/actions"))
332 #t)))))
333 (home-page "https://lxqt.org")
334 (synopsis "LXQt system administration tool")
335 (description "lxqt-admin is providing two GUI tools to adjust settings of
336 the operating system LXQt is running on.")
337 (license license:lgpl2.1+)))
338
339 (define-public lxqt-config
340 (package
341 (name "lxqt-config")
342 (version "0.13.0")
343 (source
344 (origin
345 (method url-fetch)
346 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
347 version "/" name "-" version ".tar.xz"))
348 (sha256
349 (base32 "0rizhl2v41kpgp57a61r6nmwcdw8nh9hprrrf33nfrdw8hpwxb95"))))
350 (build-system cmake-build-system)
351 (inputs
352 `(("kwindowsystem" ,kwindowsystem)
353 ("libkscreen" ,libkscreen)
354 ("liblxqt" ,liblxqt)
355 ("libqtxdg" ,libqtxdg)
356 ("libxcursor" ,libxcursor)
357 ("qtbase" ,qtbase)
358 ("qtsvg" ,qtsvg)
359 ("qtx11extras" ,qtx11extras)
360 ("solid" ,solid)
361 ("zlib" ,zlib)))
362 (native-inputs
363 `(("pkg-config" ,pkg-config)
364 ("lxqt-build-tools" ,lxqt-build-tools)
365 ("qttools" ,qttools)))
366 (arguments
367 '(#:tests? #f ; no tests
368 #:configure-flags
369 ;; TODO: prefetch translations files from 'lxqt-l10n'.
370 '("-DPULL_TRANSLATIONS=NO")
371 #:phases
372 (modify-phases %standard-phases
373 (add-after 'unpack 'patch-source
374 (lambda _
375 (substitute* '("src/CMakeLists.txt")
376 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
377 "DESTINATION \"etc/xdg"))
378 #t)))))
379 (home-page "https://lxqt.org")
380 (synopsis "Tools to configure LXQt and the underlying operating system")
381 (description "lxqt-config is providing several tools involved in the
382 configuration of both LXQt and the underlying operating system.")
383 (license license:lgpl2.1+)))
384
385 (define-public lxqt-globalkeys
386 (package
387 (name "lxqt-globalkeys")
388 (version "0.13.0")
389 (source
390 (origin
391 (method url-fetch)
392 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
393 version "/" name "-" version ".tar.xz"))
394 (sha256
395 (base32 "1gyvcjbhi7zpvgz1sf773dv9gc35hx5fz023njp9r4vl0dpcavgd"))))
396 (build-system cmake-build-system)
397 (inputs
398 `(("kwindowsystem" ,kwindowsystem)
399 ("liblxqt" ,liblxqt)
400 ("libqtxdg" ,libqtxdg)
401 ("qtbase" ,qtbase)
402 ("qtsvg" ,qtsvg)
403 ("qtx11extras" ,qtx11extras)))
404 (native-inputs
405 `(("pkg-config" ,pkg-config)
406 ("qttools" ,qttools)
407 ("lxqt-build-tools" ,lxqt-build-tools)))
408 (arguments
409 '(#:tests? #f ; no tests
410 #:configure-flags
411 ;; TODO: prefetch translations files from 'lxqt-l10n'.
412 '("-DPULL_TRANSLATIONS=NO")
413 #:phases
414 (modify-phases %standard-phases
415 (add-after 'unpack 'patch-source
416 (lambda _
417 (substitute* '("autostart/CMakeLists.txt"
418 "xdg/CMakeLists.txt")
419 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
420 "DESTINATION \"etc/xdg"))
421 #t)))))
422 (home-page "https://lxqt.org/")
423 (synopsis "Daemon used to register global keyboard shortcuts")
424 (description "lxqt-globalkeys is providing tools to set global keyboard
425 shortcuts in LXQt sessions, that is shortcuts which apply to the LXQt session
426 as a whole and are not limited to distinct applications.")
427 (license license:lgpl2.1+)))
428
429 (define-public lxqt-notificationd
430 (package
431 (name "lxqt-notificationd")
432 (version "0.13.0")
433 (source
434 (origin
435 (method url-fetch)
436 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
437 version "/" name "-" version ".tar.xz"))
438 (sha256
439 (base32 "1l0hdbvghyhqgvy4pih7rvz26bc6yc8a3l1bdj11hnkw62h1i7d6"))))
440 (build-system cmake-build-system)
441 (inputs
442 `(("kwindowsystem" ,kwindowsystem)
443 ("liblxqt" ,liblxqt)
444 ("libqtxdg" ,libqtxdg)
445 ("qtbase" ,qtbase)
446 ("qtsvg" ,qtsvg)
447 ("qtx11extras" ,qtx11extras)))
448 (native-inputs
449 `(("lxqt-build-tools" ,lxqt-build-tools)
450 ("qttools" ,qttools)))
451 (arguments
452 '(#:tests? #f ; no test target
453 #:configure-flags
454 ;; TODO: prefetch translations files from 'lxqt-l10n'.
455 '("-DPULL_TRANSLATIONS=NO")
456 #:phases
457 (modify-phases %standard-phases
458 (add-after 'unpack 'patch-source
459 (lambda _
460 (substitute* '("autostart/CMakeLists.txt")
461 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
462 "DESTINATION \"etc/xdg"))
463 #t)))))
464 (home-page "https://lxqt.org/")
465 (synopsis "The LXQt notification daemon")
466 (description "lxqt-notificationd is LXQt's implementation of a daemon
467 according to the Desktop Notifications Specification.")
468 (license license:lgpl2.1+)))
469
470 (define-public lxqt-openssh-askpass
471 (package
472 (name "lxqt-openssh-askpass")
473 (version "0.13.0")
474 (source
475 (origin
476 (method url-fetch)
477 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
478 version "/" name "-" version ".tar.xz"))
479 (sha256
480 (base32 "0l2272gya8jgv71bvg2hz37lnhiznv4ng3j0p6j79f99hwb5ygpk"))))
481 (build-system cmake-build-system)
482 (inputs
483 `(("kwindowsystem" ,kwindowsystem)
484 ("liblxqt" ,liblxqt)
485 ("libqtxdg" ,libqtxdg)
486 ("qtbase" ,qtbase)
487 ("qtsvg" ,qtsvg)
488 ("qtx11extras" ,qtx11extras)))
489 (native-inputs
490 `(("lxqt-build-tools" ,lxqt-build-tools)
491 ("qttools" ,qttools)))
492 (arguments
493 '(#:tests? #f ; no tests
494 #:configure-flags
495 ;; TODO: prefetch translations files from 'lxqt-l10n'.
496 '("-DPULL_TRANSLATIONS=NO")))
497 (home-page "https://lxqt.org/")
498 (synopsis "GUI to query passwords on behalf of SSH agents")
499 (description "lxqt-openssh-askpass is a GUI to query credentials on behalf
500 of other programs.")
501 (license license:lgpl2.1+)))
502
503 (define-public lxqt-panel
504 (package
505 (name "lxqt-panel")
506 (version "0.13.0")
507 (source
508 (origin
509 (method url-fetch)
510 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
511 version "/" name "-" version ".tar.xz"))
512 (sha256
513 (base32 "1qraigzq7nc5a2q6f5ybxwx07gxffa3m3bg7fiv6ppwss51xqfd1"))))
514 (build-system cmake-build-system)
515 (inputs
516 `(("alsa-lib" ,alsa-lib)
517 ("kguiaddons" ,kguiaddons)
518 ("kwindowsystem" ,kwindowsystem)
519 ("libdbusmenu-qt" ,libdbusmenu-qt)
520 ("liblxqt" ,liblxqt)
521 ("libqtxdg" ,libqtxdg)
522 ("libstatgrab" ,libstatgrab)
523 ("libsysstat" ,libsysstat)
524 ("libxcomposite" ,libxcomposite)
525 ("libxdamage" ,libxdamage)
526 ("libxkbcommon" ,libxkbcommon)
527 ("libxrender" ,libxrender)
528 ("lm-sensors" ,lm-sensors "lib")
529 ("lxqt-globalkeys" ,lxqt-globalkeys)
530 ("pcre" ,pcre)
531 ("pulseaudio" ,pulseaudio)
532 ("qtbase" ,qtbase)
533 ("qtsvg" ,qtsvg)
534 ("qtx11extras" ,qtx11extras)
535 ("solid" ,solid)
536 ("xcb-util" ,xcb-util)))
537 (native-inputs
538 `(("pkg-config" ,pkg-config)
539 ("lxqt-build-tools" ,lxqt-build-tools)
540 ("qttools" ,qttools)))
541 (arguments
542 '(#:tests? #f ; no tests
543 #:configure-flags
544 ;; TODO: prefetch translations files from 'lxqt-l10n'.
545 '("-DPULL_TRANSLATIONS=NO")
546 #:phases
547 (modify-phases %standard-phases
548 (add-after 'unpack 'patch-source
549 (lambda _
550 (substitute* '("autostart/CMakeLists.txt"
551 "menu/CMakeLists.txt")
552 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
553 "DESTINATION \"etc/xdg"))
554 #t)))))
555 (home-page "https://lxqt.org/")
556 (synopsis "The LXQt desktop panel")
557 (description "lxqt-panel represents the taskbar of LXQt.")
558 (license license:lgpl2.1+)))
559
560 (define-public lxqt-policykit
561 (package
562 (name "lxqt-policykit")
563 (version "0.13.0")
564 (source
565 (origin
566 (method url-fetch)
567 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
568 version "/" name "-" version ".tar.xz"))
569 (sha256
570 (base32 "1d97fys6625nk4q6irp0jhsbk30xi7idnii1f3vrrrdcl2cahagp"))))
571 (build-system cmake-build-system)
572 (inputs
573 `(("kwindowsystem" ,kwindowsystem)
574 ("liblxqt" ,liblxqt)
575 ("libqtxdg" ,libqtxdg)
576 ("pcre" ,pcre)
577 ("polkit-qt" ,polkit-qt)
578 ("qtbase" ,qtbase)
579 ("qtsvg" ,qtsvg)
580 ("qtx11extras" ,qtx11extras)))
581 (native-inputs
582 `(("pkg-config" ,pkg-config)
583 ("polkit" ,polkit)
584 ("lxqt-build-tools" ,lxqt-build-tools)
585 ("qttools" ,qttools)))
586 (arguments
587 '(#:tests? #f ; no test target
588 #:configure-flags
589 '("-DPULL_TRANSLATIONS=NO")
590 #:phases
591 (modify-phases %standard-phases
592 (add-after 'unpack 'patch-source
593 (lambda _
594 (substitute* '("autostart/CMakeLists.txt")
595 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
596 "DESTINATION \"etc/xdg"))
597 #t)))))
598 (home-page "https://lxqt.org/")
599 (synopsis "The LXQt PolicyKit agent")
600 (description "lxqt-policykit is the polkit authentification agent of
601 LXQt.")
602 (license license:lgpl2.1+)))
603
604 (define-public lxqt-powermanagement
605 (package
606 (name "lxqt-powermanagement")
607 (version "0.13.0")
608 (source
609 (origin
610 (method url-fetch)
611 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
612 version "/" name "-" version ".tar.xz"))
613 (sha256
614 (base32 "15nvdypyjwnp7k3d2pkhdbmaqb3ccacmh95rbdbc5mr7yrjy9613"))))
615 (build-system cmake-build-system)
616 (inputs
617 `(("kidletime" ,kidletime)
618 ("kwindowsystem" ,kwindowsystem)
619 ("liblxqt" ,liblxqt)
620 ("libqtxdg" ,libqtxdg)
621 ("qtbase" ,qtbase)
622 ("qtsvg" ,qtsvg)
623 ("qtx11extras" ,qtx11extras)
624 ("solid" ,solid)))
625 (native-inputs
626 `(("lxqt-build-tools" ,lxqt-build-tools)
627 ("qttools" ,qttools)))
628 (arguments
629 '(#:tests? #f ; no tests
630 #:configure-flags
631 ;; TODO: prefetch translations files from 'lxqt-l10n'.
632 '("-DPULL_TRANSLATIONS=NO")
633 #:phases
634 (modify-phases %standard-phases
635 (add-after 'unpack 'patch-source
636 (lambda _
637 (substitute* '("autostart/CMakeLists.txt")
638 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
639 "DESTINATION \"etc/xdg"))
640 #t)))))
641 (home-page "https://lxqt.org/")
642 (synopsis "Power management module for LXQt")
643 (description "lxqt-powermanagement is providing tools to monitor power
644 management events and optionally trigger actions like e. g. shut down a system
645 when laptop batteries are low on power.")
646 (license license:lgpl2.1+)))
647
648 (define-public lxqt-qtplugin
649 (package
650 (name "lxqt-qtplugin")
651 (version "0.13.0")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
656 version "/" name "-" version ".tar.xz"))
657 (sha256
658 (base32 "0nnwbc99njpsyqb0cy3x0srcgwa7qrnq0qwcyx7fbvwsq1l8cz56"))))
659 (build-system cmake-build-system)
660 (inputs
661 `(("libdbusmenu-qt" ,libdbusmenu-qt)
662 ("libfm-qt" ,libfm-qt)
663 ("libqtxdg" ,libqtxdg)
664 ("qtbase" ,qtbase)
665 ("qtsvg" ,qtsvg)
666 ("qtx11extras" ,qtx11extras)))
667 (native-inputs
668 `(("lxqt-build-tools" ,lxqt-build-tools)
669 ("qttools" ,qttools)))
670 (arguments
671 '(#:tests? #f ; no tests
672 #:phases
673 (modify-phases %standard-phases
674 (add-after 'unpack 'patch-source
675 (lambda _
676 (substitute* '("src/CMakeLists.txt")
677 (("DESTINATION \"\\$\\{QT_PLUGINS_DIR\\}")
678 "DESTINATION \"lib/qt5/plugins"))
679 #t)))))
680 (home-page "https://lxqt.org/")
681 (synopsis "LXQt Qt platform integration plugin")
682 (description "lxqt-qtplugin is providing a library libqtlxqt to integrate
683 Qt with LXQt.")
684 (license license:lgpl2.1+)))
685
686 (define-public lxqt-runner
687 (package
688 (name "lxqt-runner")
689 (version "0.13.0")
690 (source
691 (origin
692 (method url-fetch)
693 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
694 version "/" name "-" version ".tar.xz"))
695 (sha256
696 (base32 "0dsg6fdcqbl7gza0sg1pb49zn5x31q7zx77jp7mkf6wc2lv8lali"))))
697 (build-system cmake-build-system)
698 (inputs
699 `(("kwindowsystem" ,kwindowsystem)
700 ("liblxqt" ,liblxqt)
701 ("libqtxdg" ,libqtxdg)
702 ("lxqt-globalkeys" ,lxqt-globalkeys)
703 ("muparser" ,muparser)
704 ("pcre" ,pcre)
705 ("qtbase" ,qtbase)
706 ("qtsvg" ,qtsvg)
707 ("qtx11extras" ,qtx11extras)))
708 (native-inputs
709 `(("pkg-config" ,pkg-config)
710 ("qttools" ,qttools)
711 ("lxqt-build-tools" ,lxqt-build-tools)))
712 (arguments
713 '(#:tests? #f ; no tests
714 #:configure-flags
715 ;; TODO: prefetch translations files from 'lxqt-l10n'.
716 '("-DPULL_TRANSLATIONS=NO")
717 #:phases
718 (modify-phases %standard-phases
719 (add-after 'unpack 'patch-source
720 (lambda _
721 (substitute* '("autostart/CMakeLists.txt")
722 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
723 "DESTINATION \"etc/xdg"))
724 #t)))))
725 (home-page "https://lxqt.org/")
726 (synopsis "Tool used to launch programs quickly by typing their names")
727 (description "lxqt-runner provides a GUI that comes up on the desktop and
728 allows for launching applications or shutting down the system.")
729 (license license:lgpl2.1+)))
730
731 (define-public lxqt-session
732 (package
733 (name "lxqt-session")
734 (version "0.13.0")
735 (source
736 (origin
737 (method url-fetch)
738 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
739 version "/" name "-" version ".tar.xz"))
740 (sha256
741 (base32 "1aibppppmg46ybbajx2qc395l0yp9rqlp2am01fqjxadsf8vci5z"))))
742 (build-system cmake-build-system)
743 (inputs
744 `(("eudev" ,eudev)
745 ("kwindowsystem" ,kwindowsystem)
746 ("liblxqt" ,liblxqt)
747 ("libqtxdg" ,libqtxdg)
748 ("qtbase" ,qtbase)
749 ("qtsvg" ,qtsvg)
750 ("qtx11extras" ,qtx11extras)
751 ("xdg-user-dirs" ,xdg-user-dirs)))
752 (native-inputs
753 `(("pkg-config" ,pkg-config)
754 ("lxqt-build-tools" ,lxqt-build-tools)
755 ("qttools" ,qttools)))
756 (arguments
757 `(#:tests? #f
758 #:configure-flags
759 `("-DPULL_TRANSLATIONS=NO")
760 #:phases
761 (modify-phases %standard-phases
762 (add-after 'unpack 'patch-source
763 (lambda _
764 (substitute* '("autostart/CMakeLists.txt"
765 "config/CMakeLists.txt")
766 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
767 "DESTINATION \"etc/xdg"))
768 #t)))))
769 (home-page "https://lxqt.org/")
770 (synopsis "Session manager for LXQt")
771 (description "lxqt-session provides the standard session manager
772 for the LXQt desktop environment.")
773 (license license:lgpl2.1+)))
774
775 (define-public lxqt-sudo
776 (package
777 (name "lxqt-sudo")
778 (version "0.13.0")
779 (source
780 (origin
781 (method url-fetch)
782 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
783 version "/" name "-" version ".tar.xz"))
784 (sha256
785 (base32 "1j28wlw4rkzvr85yl78fqkvz7sv7dykm9ghm63xdkskfjbsas1cf"))))
786 (build-system cmake-build-system)
787 (inputs
788 `(("kwindowsystem" ,kwindowsystem)
789 ("liblxqt" ,liblxqt)
790 ("libqtxdg" ,libqtxdg)
791 ("qtbase" ,qtbase)
792 ("qtsvg" ,qtsvg)
793 ("qtx11extras" ,qtx11extras)
794 ("sudo" ,sudo)))
795 (native-inputs
796 `(("pkg-config" ,pkg-config)
797 ("qttools" ,qttools)
798 ("lxqt-build-tools" ,lxqt-build-tools)))
799 (arguments
800 '(#:tests? #f ; no tests
801 #:configure-flags
802 ;; TODO: prefetch translations files from 'lxqt-l10n'.
803 '("-DPULL_TRANSLATIONS=NO")))
804 (home-page "https://lxqt.org/")
805 (synopsis "GUI frontend for sudo/su")
806 (description "lxqt-sudo is a graphical front-end of commands sudo and su
807 respectively. As such it enables regular users to launch applications with
808 permissions of other users including root.")
809 (license license:lgpl2.1+)))
810
811 (define-public lxqt-themes
812 (package
813 (name "lxqt-themes")
814 (version "0.13.0")
815 (source
816 (origin
817 (method url-fetch)
818 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
819 version "/" name "-" version ".tar.xz"))
820 (sha256
821 (base32 "13kkkzjx8bgnwckz79j273azvm4za66i4cp2qhxwdpxh0fwziklf"))))
822 (build-system cmake-build-system)
823 (native-inputs
824 `(("lxqt-build-tools" ,lxqt-build-tools)))
825 (arguments
826 `(#:tests? #f ; no tests
827 #:phases
828 (modify-phases %standard-phases
829 (add-after 'unpack 'patch-source
830 (lambda _
831 (substitute* '("CMakeLists.txt")
832 (("DESTINATION \"\\$\\{LXQT_GRAPHICS_DIR\\}")
833 "DESTINATION \"share/lxqt/graphics"))
834 (substitute* '("themes/CMakeLists.txt")
835 (("DESTINATION \"\\$\\{LXQT_SHARE_DIR\\}")
836 "DESTINATION \"share/lxqt"))
837 #t)))))
838 (home-page "https://lxqt.org/")
839 (synopsis "Themes, graphics and icons for LXQt")
840 (description "This package comprises a number of graphic files and themes
841 for LXQt.")
842 ;; The whole package is released under LGPL 2.1+, while the LXQt logo is
843 ;; licensed under CC-BY-SA 3.0.
844 (license license:lgpl2.1+)))
845
846
847 ;; File Manager
848
849 (define-public libfm-qt
850 (package
851 (name "libfm-qt")
852 (version "0.13.1")
853 (source
854 (origin
855 (method url-fetch)
856 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
857 version "/" name "-" version ".tar.xz"))
858 (sha256
859 (base32 "0p0lbz7dh5c38zq3yp1v1mm99ymg7mqr3h7yzniif2hipmgvxsv9"))))
860 (build-system cmake-build-system)
861 (arguments
862 '(#:tests? #f ; no tests
863 #:configure-flags
864 ;; TODO : prefetch translations files from 'lxqt-l10n'.
865 '("-DPULL_TRANSLATIONS=NO")))
866 (inputs
867 `(("glib" ,glib)
868 ("libexif" ,libexif)
869 ("libfm" ,libfm)
870 ("libxcb" ,libxcb)
871 ("menu-cache" ,menu-cache)
872 ("pcre" ,pcre)
873 ("qtbase" ,qtbase)
874 ("qtx11extras" ,qtx11extras)))
875 (native-inputs
876 `(("pkg-config" ,pkg-config)
877 ("lxqt-build-tools" ,lxqt-build-tools)
878 ("qttools" ,qttools)))
879 (home-page "https://lxqt.org/")
880 (synopsis "Qt binding for libfm")
881 (description "libfm-qt is the Qt port of libfm, a library providing
882 components to build desktop file managers which belongs to LXDE.")
883 (license license:lgpl2.1+)))
884
885 (define-public pcmanfm-qt
886 (package
887 (name "pcmanfm-qt")
888 (version "0.13.0")
889 (source
890 (origin
891 (method url-fetch)
892 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
893 version "/" name "-" version ".tar.xz"))
894 (sha256
895 (base32 "08jprkkk62pk34q9lxa207bh27xi86fj8jxfd5z3w2m5j5nim5mz"))))
896 (build-system cmake-build-system)
897 (inputs
898 `(("libfm-qt" ,libfm-qt)
899 ("qtbase" ,qtbase)
900 ("qtx11extras" ,qtx11extras)))
901 (native-inputs
902 `(("pkg-config" ,pkg-config)
903 ("qttools" ,qttools)
904 ("lxqt-build-tools" ,lxqt-build-tools)))
905 (arguments
906 '(#:tests? #f ; no tests
907 #:configure-flags
908 ;; TODO: prefetch translations files from 'lxqt-l10n'.
909 '("-DPULL_TRANSLATIONS=NO")
910 #:phases
911 (modify-phases %standard-phases
912 (add-after 'unpack 'patch-source
913 (lambda _
914 (substitute* '("autostart/CMakeLists.txt")
915 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
916 "DESTINATION \"etc/xdg"))
917 #t)))))
918 (home-page "https://lxqt.org/")
919 (synopsis "File manager and desktop icon manager")
920 (description "PCManFM-Qt is the Qt port of PCManFM, the file manager of
921 LXDE.")
922 (license license:gpl2+)))
923
924
925 ;; Extra
926
927 (define-public compton-conf
928 (package
929 (name "compton-conf")
930 (version "0.4.0")
931 (source
932 (origin
933 (method url-fetch)
934 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
935 version "/" name "-" version ".tar.xz"))
936 (sha256
937 (base32 "0q3yx2a6wf8yahrwgvhmv9sd7gmrhid528vrqy04dg8m5cx1bjci"))))
938 (build-system cmake-build-system)
939 (inputs
940 `(("libconfig" ,libconfig)
941 ("qtbase" ,qtbase)))
942 (native-inputs
943 `(("lxqt-build-tools" ,lxqt-build-tools)
944 ("pkg-config" ,pkg-config)
945 ("qttools" ,qttools)))
946 (arguments
947 '(#:tests? #f ; no tests
948 #:configure-flags
949 ;; TODO: prefetch translations files from 'lxqt-l10n'.
950 '("-DPULL_TRANSLATIONS=NO")
951 #:phases
952 (modify-phases %standard-phases
953 (add-after 'unpack 'patch-source
954 (lambda _
955 (substitute* '("autostart/CMakeLists.txt")
956 (("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
957 "DESTINATION \"etc/xdg"))
958 #t)))))
959 (home-page "https://lxqt.org/")
960 (synopsis "GUI configuration tool for compton X composite manager")
961 (description "@code{compton-conf} is a configuration tool for X composite
962 manager Compton.")
963 (license license:lgpl2.1+)))
964
965 (define-public lximage-qt
966 (package
967 (name "lximage-qt")
968 (version "0.7.0")
969 (source
970 (origin
971 (method url-fetch)
972 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
973 version "/" name "-" version ".tar.xz"))
974 (sha256
975 (base32 "1mwjh6lrjayr9snsmabkl5qs4xm6d27mfz8k3jxfm5dk3pjj1b0w"))))
976 (build-system cmake-build-system)
977 (inputs
978 `(("libexif" ,libexif)
979 ("libfm-qt" ,libfm-qt)
980 ("qtbase" ,qtbase)
981 ("qtsvg" ,qtsvg)
982 ("qtx11extras" ,qtx11extras)))
983 (native-inputs
984 `(("pkg-config" ,pkg-config)
985 ("lxqt-build-tools" ,lxqt-build-tools)
986 ("qttools" ,qttools)))
987 (arguments
988 '(#:tests? #f ; no tests
989 #:configure-flags
990 ;; TODO: prefetch translations files from 'lxqt-l10n'.
991 '("-DPULL_TRANSLATIONS=NO")))
992 (home-page "https://lxqt.org/")
993 (synopsis "The image viewer and screenshot tool for lxqt")
994 (description "LXImage-Qt is the Qt port of LXImage, a simple and fast
995 image viewer.")
996 (license license:gpl2+)))
997
998 (define-public obconf-qt
999 (package
1000 (name "obconf-qt")
1001 (version "0.13.0")
1002 (source
1003 (origin
1004 (method url-fetch)
1005 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
1006 version "/" name "-" version ".tar.xz"))
1007 (sha256
1008 (base32 "1fbzn1p2mdvn8dcbavmd1imrvkph2jfssrlw8l26qz6qk8qlmhnf"))))
1009 (build-system cmake-build-system)
1010 (inputs
1011 `(("imlib2" ,imlib2)
1012 ("libsm" ,libsm)
1013 ("librsvg" ,librsvg)
1014 ("libxft" ,libxft)
1015 ("libxml2" ,libxml2)
1016 ("openbox" ,openbox)
1017 ("pango" ,pango)
1018 ("pcre" ,pcre)
1019 ("qtbase" ,qtbase)
1020 ("qtx11extras" ,qtx11extras)))
1021 (native-inputs
1022 `(("lxqt-build-tools" ,lxqt-build-tools)
1023 ("pkg-config" ,pkg-config)
1024 ("qttools" ,qttools)))
1025 (arguments
1026 '(#:tests? #f ; no tests
1027 #:configure-flags
1028 ;; TODO: prefetch translations files from 'lxqt-l10n'.
1029 '("-DPULL_TRANSLATIONS=NO")))
1030 (home-page "https://lxqt.org/")
1031 (synopsis "Openbox configuration tool")
1032 (description "ObConf-Qt is a Qt port of ObConf, a configuration editor for
1033 window manager OpenBox.")
1034 (license license:gpl2+)))
1035
1036 (define-public pavucontrol-qt
1037 (package
1038 (name "pavucontrol-qt")
1039 (version "0.4.0")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
1044 version "/" name "-" version ".tar.xz"))
1045 (sha256
1046 (base32 "0pqvhhgw7d00wqw5v3ghm4l8250zy7bqpvhff6l7y1lw0z2fvcp6"))))
1047 (build-system cmake-build-system)
1048 (inputs
1049 `(("glib" ,glib)
1050 ("pcre" ,pcre)
1051 ("pulseaudio" ,pulseaudio)
1052 ("qtbase" ,qtbase)
1053 ("qtx11extras" ,qtx11extras)))
1054 (native-inputs
1055 `(("pkg-config" ,pkg-config)
1056 ("lxqt-build-tools" ,lxqt-build-tools)
1057 ("qttools" ,qttools)))
1058 (arguments
1059 '(#:tests? #f ; no tests
1060 #:configure-flags
1061 ;; TODO: prefetch translations files from 'lxqt-l10n'.
1062 '("-DPULL_TRANSLATIONS=NO")))
1063 (home-page "https://lxqt.org/")
1064 (synopsis "Pulseaudio mixer in Qt")
1065 (description "@code{pavucontrol-qt} is the Qt port of volume control
1066 @code{pavucontrol} of sound server @code{PulseAudio}.")
1067 (license license:gpl2+)))
1068
1069 (define-public qps
1070 (package
1071 (name "qps")
1072 (version "1.10.18")
1073 (source
1074 (origin
1075 (method url-fetch)
1076 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
1077 version "/" name "-" version ".tar.xz"))
1078 (sha256
1079 (base32 "0pzk83p7a9ax0893s9hp2qkmiilzrf8iqry5a0x1g73hdwm5hm44"))))
1080 (build-system cmake-build-system)
1081 (inputs
1082 `(("libxrender" ,libxrender)
1083 ("qtbase" ,qtbase)
1084 ("qtx11extras" ,qtx11extras)))
1085 (native-inputs
1086 `(("qttools" ,qttools)))
1087 (arguments
1088 '(#:tests? #f)) ; no tests
1089 (home-page "https://lxqt.org/")
1090 (synopsis "Qt-based visual process status monitor")
1091 (description "@code{qps} is a monitor that displays the status of the
1092 processes currently in existence, much like code{top} or code{ps}.")
1093 (license license:gpl2+)))
1094
1095 (define-public qtermwidget
1096 (package
1097 (name "qtermwidget")
1098 (version "0.9.0")
1099 (source
1100 (origin
1101 (method url-fetch)
1102 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
1103 version "/" name "-" version ".tar.xz"))
1104 (sha256
1105 (base32 "1c1qzbysxjbikp4bpgphphw4dgpl10gz8m06ccs2c48qxhpyd773"))))
1106 (build-system cmake-build-system)
1107 (inputs
1108 `(("qtbase" ,qtbase)))
1109 (native-inputs
1110 `(("lxqt-build-tools" ,lxqt-build-tools)
1111 ("qttools" ,qttools)))
1112 (arguments
1113 '(#:tests? #f ; no tests
1114 #:configure-flags
1115 ;; TODO: prefetch translations files from 'lxqt-l10n'.
1116 '("-DPULL_TRANSLATIONS=NO")))
1117 (home-page "https://lxqt.org/")
1118 (synopsis "The terminal widget for QTerminal")
1119 (description "QTermWidget is a terminal emulator widget for Qt 5.")
1120 (license license:gpl2+)))
1121
1122 (define-public qterminal
1123 (package
1124 (name "qterminal")
1125 (version "0.9.0")
1126 (source
1127 (origin
1128 (method url-fetch)
1129 (uri (string-append "https://github.com/lxqt/" name "/releases/download/"
1130 version "/" name "-" version ".tar.xz"))
1131 (sha256
1132 (base32 "1vlza75br1ys62lgkdz26md729bfpbnasfzswp7hakmgaq1rhms1"))))
1133 (build-system cmake-build-system)
1134 (inputs
1135 `(("qtbase" ,qtbase)
1136 ("qtx11extras" ,qtx11extras)
1137 ("qtermwidget" ,qtermwidget)))
1138 (native-inputs
1139 `(("lxqt-build-tools" ,lxqt-build-tools)
1140 ("qttools" ,qttools)))
1141 (arguments
1142 '(#:tests? #f ; no tests
1143 #:configure-flags
1144 ;; TODO: prefetch translations files from 'lxqt-l10n'.
1145 '("-DPULL_TRANSLATIONS=NO")))
1146 (home-page "https://lxqt.org/")
1147 (synopsis "Lightweight Qt-based terminal emulator")
1148 (description "QTerminal is a lightweight Qt terminal emulator based on
1149 QTermWidget.")
1150 (license license:gpl2+)))
1151
1152 (define-public screengrab
1153 (package
1154 (name "screengrab")
1155 (version "1.99")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (string-append "https://github.com/lxqt/screengrab/releases/download/"
1160 version "/screengrab-" version ".tar.xz"))
1161 (sha256
1162 (base32 "17y8rsx9fixvxv2byq8d6c01vry10nv07f8jy85vz7zp4f0rgzz3"))))
1163 (build-system cmake-build-system)
1164 (inputs
1165 `(("kwindowsystem" ,kwindowsystem)
1166 ("libqtxdg" ,libqtxdg)
1167 ("qtbase" ,qtbase)
1168 ("qtsvg" ,qtsvg)
1169 ("qtx11extras" ,qtx11extras)))
1170 (native-inputs
1171 `(("pkg-config" ,pkg-config)
1172 ("qttools" ,qttools)))
1173 (arguments
1174 '(#:tests? #f)) ; no tests
1175 (home-page "https://lxqt.org/")
1176 (synopsis "Crossplatform tool for fast making screenshots")
1177 (description "ScreenGrab is a program for fast creating screenshots, and
1178 easily publishing them on internet image hosting services.")
1179 (license license:gpl2+)))
1180
1181
1182 ;; The LXQt Desktop Environment
1183
1184 (define-public lxqt
1185 (package
1186 (name "lxqt")
1187 (version (package-version lxqt-session))
1188 (source #f)
1189 (build-system trivial-build-system)
1190 (arguments '(#:builder (begin (mkdir %output) #t)))
1191 (propagated-inputs
1192 `(;; XDG
1193 ("desktop-file-utils" ,desktop-file-utils)
1194 ("hicolor-icon-theme" ,hicolor-icon-theme)
1195 ("xdg-user-dirs" ,xdg-user-dirs)
1196 ("xdg-utils" ,xdg-utils)
1197 ;; Base
1198 ;; TODO: qtsvg is needed for lxqt apps to display icons. Maybe it
1199 ;; should be added to their propagated-inputs?
1200 ("qtsvg" ,qtsvg)
1201 ;; Core
1202 ("lxqt-about" ,lxqt-about)
1203 ("lxqt-admin" ,lxqt-admin)
1204 ("lxqt-config" ,lxqt-config)
1205 ("lxqt-notificationd" ,lxqt-notificationd)
1206 ("lxqt-openssh-askpass" ,lxqt-openssh-askpass)
1207 ("lxqt-panel" ,lxqt-panel)
1208 ("lxqt-policykit" ,lxqt-policykit)
1209 ("lxqt-powermanagement" ,lxqt-powermanagement)
1210 ("lxqt-qtplugin" ,lxqt-qtplugin)
1211 ("lxqt-runner" ,lxqt-runner)
1212 ("lxqt-session" ,lxqt-session)
1213 ("lxqt-sudo" ,lxqt-sudo)
1214 ("lxqt-themes" ,lxqt-themes)
1215 ("pcmanfm-qt" ,pcmanfm-qt)
1216 ;; Extra
1217 ("compton" ,compton)
1218 ("compton-conf" ,compton-conf)
1219 ("font-dejavu" ,font-dejavu)
1220 ("lximage-qt" ,lximage-qt)
1221 ("obconf-qt" ,obconf-qt)
1222 ("openbox" ,openbox)
1223 ("oxygen-icons" ,oxygen-icons)
1224 ("pavucontrol-qt" ,pavucontrol-qt)
1225 ("qps" ,qps)
1226 ("qterminal" ,qterminal)))
1227 (synopsis "The Lightweight Qt Desktop Environment")
1228 (description "LXQt is a lightweight Qt desktop environment.")
1229 (home-page "https://lxde.org")
1230 (license license:gpl2+)))