gnu: emacs-sly: Update to 20200228.
[jackhill/guix/guix.git] / gnu / packages / xfce.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015 Sou Bunnbu <iyzsong@gmail.com>
3 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
4 ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
5 ;;; Copyright © 2016 Florian Paul Schmidt <mista.tapas@gmx.net>
6 ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net>
7 ;;; Copyright © 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
8 ;;; Copyright © 2017 Petter <petter@mykolab.ch>
9 ;;; Copyright © 2017 ng0 <ng0@n0.is>
10 ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
11 ;;; Copyright © 2019 Pkill -9 <pkill9@runbox.com>
12 ;;; Copyright © 2019 L p R n d n <guix@lprndn.info>
13 ;;; Copyright © 2019 Ingo Ruhnke <grumbel@gmail.com>
14 ;;;
15 ;;; This file is part of GNU Guix.
16 ;;;
17 ;;; GNU Guix is free software; you can redistribute it and/or modify it
18 ;;; under the terms of the GNU General Public License as published by
19 ;;; the Free Software Foundation; either version 3 of the License, or (at
20 ;;; your option) any later version.
21 ;;;
22 ;;; GNU Guix is distributed in the hope that it will be useful, but
23 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;;; GNU General Public License for more details.
26 ;;;
27 ;;; You should have received a copy of the GNU General Public License
28 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
29
30 (define-module (gnu packages xfce)
31 #:use-module ((guix licenses) #:hide (freetype))
32 #:use-module (guix packages)
33 #:use-module (guix download)
34 #:use-module (guix gexp)
35 #:use-module (guix utils)
36 #:use-module (guix build-system cmake)
37 #:use-module (guix build-system glib-or-gtk)
38 #:use-module (guix build-system gnu)
39 #:use-module (guix build-system trivial)
40 #:use-module (gnu artwork)
41 #:use-module (gnu packages)
42 #:use-module (gnu packages base)
43 #:use-module (gnu packages calendar)
44 #:use-module (gnu packages cdrom)
45 #:use-module (gnu packages pkg-config)
46 #:use-module (gnu packages glib)
47 #:use-module (gnu packages gtk)
48 #:use-module (gnu packages imagemagick)
49 #:use-module (gnu packages inkscape)
50 #:use-module (gnu packages xorg)
51 #:use-module (gnu packages xdisorg)
52 #:use-module (gnu packages web)
53 #:use-module (gnu packages fontutils)
54 #:use-module (gnu packages freedesktop)
55 #:use-module (gnu packages image)
56 #:use-module (gnu packages gnome)
57 #:use-module (gnu packages pdf)
58 #:use-module (gnu packages polkit)
59 #:use-module (gnu packages gstreamer)
60 #:use-module (gnu packages libcanberra)
61 #:use-module (gnu packages linux)
62 #:use-module (gnu packages photo)
63 #:use-module (gnu packages pcre)
64 #:use-module (gnu packages popt)
65 #:use-module (gnu packages pulseaudio)
66 #:use-module (gnu packages xml)
67 #:use-module (gnu packages wm))
68
69 (define-public gtk-xfce-engine
70 (package
71 (name "gtk-xfce-engine")
72 (version "2.10.1")
73 (source (origin
74 (method url-fetch)
75 (uri (string-append "http://archive.xfce.org/src/xfce/"
76 name "/" (version-major+minor version) "/"
77 name "-" version ".tar.bz2"))
78 (sha256
79 (base32
80 "0g86ywkx0ghzhhn96k88p67bbzlm1aqckly85izp07w80l1934ja"))))
81 (build-system gnu-build-system)
82 (native-inputs
83 `(("pkg-config" ,pkg-config)
84 ("intltool" ,intltool)))
85 (inputs `(("gtk+" ,gtk+-2)))
86 (home-page "https://www.xfce.org/")
87 (synopsis "GTK+ theme engine for Xfce")
88 (description
89 "Default GTK+ engine and themes for Xfce Desktop Environment.")
90 (license gpl2+)))
91
92 (define-public libxfce4util
93 (package
94 (name "libxfce4util")
95 (version "4.14.0")
96 (source (origin
97 (method url-fetch)
98 (uri (string-append "http://archive.xfce.org/xfce/"
99 (version-major+minor version)
100 "/src/" name "-" version ".tar.bz2"))
101 (sha256
102 (base32
103 "093338faqqsrlc8dkmzr7qv411ysxczg1wlg7s3gvhrfk6vpkb9j"))))
104 (build-system gnu-build-system)
105 (native-inputs
106 `(("pkg-config" ,pkg-config)
107 ("gobject-introspection" ,gobject-introspection)
108 ("intltool" ,intltool)
109 ("vala" ,vala)))
110 (propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc
111 (home-page "https://www.xfce.org/")
112 (synopsis "Basic utility library for Xfce")
113 (description
114 "A general-purpose utility library with core application support for the
115 Xfce Desktop Environment.")
116 (license lgpl2.0+)))
117
118 (define-public xfconf
119 (package
120 (name "xfconf")
121 (version "4.14.1")
122 (source (origin
123 (method url-fetch)
124 (uri (string-append "https://archive.xfce.org/src/xfce/"
125 name "/" (version-major+minor version) "/"
126 name "-" version ".tar.bz2"))
127 (sha256
128 (base32
129 "0n8d55c98ff7wgwv3qa4g369sv4iasgm1w62zq10kq5f56iy14xq"))))
130 (build-system gnu-build-system)
131 (arguments
132 '(#:phases
133 ;; Run check after install phase to test dbus activation.
134 (modify-phases %standard-phases
135 (add-after 'install 'custom-check
136 (lambda _
137 (setenv "HOME" (getenv "TMPDIR")) ; xfconfd requires a writable HOME
138 ;; Run test-suite under a dbus session.
139 (setenv "XDG_DATA_DIRS" ; for finding org.xfce.Xfconf.service
140 (string-append %output "/share"))
141 ;; For the missing '/etc/machine-id'.
142 (setenv "DBUS_FATAL_WARNINGS" "0");
143 (invoke "dbus-launch" "make" "check")))
144 (delete 'check))))
145 (native-inputs
146 `(("pkg-config" ,pkg-config)
147 ("intltool" ,intltool)
148 ("glib:bin" ,glib "bin") ;; for gdbus-codegen
149 ("gobject-introspection" ,gobject-introspection)
150 ("vala" ,vala)
151 ("dbus" ,dbus)))
152 (propagated-inputs
153 ;; libxfconf-0.pc refers to all these.
154 `(("glib" ,glib)))
155 (inputs
156 `(("libxfce4util" ,libxfce4util)))
157 (home-page "https://www.xfce.org/")
158 (synopsis "Configuration storage and query system for Xfce")
159 (description
160 "Settings daemon for Xfce, implemented as a D-Bus-based configuration
161 storage system.")
162 (license lgpl2.0+)))
163
164 (define-public libxfce4ui
165 (package
166 (name "libxfce4ui")
167 (version "4.14.1")
168 (source (origin
169 (method url-fetch)
170 (uri (string-append "https://archive.xfce.org/src/xfce/"
171 name "/" (version-major+minor version) "/"
172 name "-" version ".tar.bz2"))
173 (sha256
174 (base32
175 "1npjhznmnckhnylsv3l7p1zvhckhmp9d7vifs8w12kdfmrg0fjf4"))))
176 (build-system gnu-build-system)
177 (arguments
178 `(#:configure-flags
179 (list "--with-vendor-info=GNU Guix")))
180 (native-inputs
181 `(("pkg-config" ,pkg-config)
182 ("intltool" ,intltool)
183 ("gobject-introspection" ,gobject-introspection)))
184 (propagated-inputs
185 `(("gtk+-3" ,gtk+) ; required by libxfce4ui-2.pc
186 ;; libxfce4kbd-private-2.pc refers to all these.
187 ("libxfce4util" ,libxfce4util)
188 ("xfconf" ,xfconf)))
189 (inputs `(("libsm" ,libsm)
190 ("libice" ,libice)
191 ;; FIXME: required by libxfce4ui-1.pc, so should be propagated,
192 ;; but will lead to a conflict with gtk+.
193 ("gtk+-2" ,gtk+-2)
194 ("startup-notification" ,startup-notification)))
195 (home-page "https://www.xfce.org/")
196 (synopsis "Widgets library for Xfce")
197 (description
198 "Libxfce4ui is the replacement of the old libxfcegui4 library. It is used
199 to share commonly used Xfce widgets among the Xfce applications.")
200 (license lgpl2.0+)))
201
202 (define-public exo
203 (package
204 (name "exo")
205 (version "0.12.10")
206 (source (origin
207 (method url-fetch)
208 (uri (string-append "https://archive.xfce.org/src/xfce/"
209 "exo/" (version-major+minor version) "/"
210 "exo-" version ".tar.bz2"))
211 (sha256
212 (base32
213 "1b3w4pf9gkcp13h63nf93k95hkw0ij7v5y7wjklqd1qifm8xd3w4"))))
214 (build-system gnu-build-system)
215 (native-inputs
216 `(("pkg-config" ,pkg-config)
217 ("intltool" ,intltool)))
218 (propagated-inputs
219 ;; exo-2.pc refers to all these.
220 `(("gtk+-3" ,gtk+)
221 ("libxfce4util" ,libxfce4util)))
222 (inputs
223 `(;; FIXME Refered to in exo-1.pc but conflict with gtk+-3
224 ("gtk+-2" ,gtk+-2)
225 ("libxfce4ui" ,libxfce4ui)
226 ("perl-uri" ,perl-uri)))
227 (home-page "https://www.xfce.org/")
228 (synopsis "Extension library for Xfce")
229 (description
230 "An extension library to Xfce. While Xfce comes with quite a few libraries
231 that are targeted at desktop development, libexo is targeted at application
232 development.")
233 ;; Libraries are under LGPLv2+, and programs under GPLv2+.
234 (license (list gpl2+ lgpl2.1+))))
235
236 (define-public garcon
237 (package
238 (name "garcon")
239 (version "0.6.4")
240 (source (origin
241 (method url-fetch)
242 (uri (string-append "https://archive.xfce.org/src/xfce/"
243 "garcon/" (version-major+minor version) "/"
244 "garcon-" version ".tar.bz2"))
245 (sha256
246 (base32
247 "0bbngb4bn1m325j7y40gky36kn2nlsvqs6xp0wy76x3s0d9lfpnp"))))
248 (build-system gnu-build-system)
249 (native-inputs
250 `(("pkg-config" ,pkg-config)
251 ("intltool" ,intltool)
252 ("glib:bin" ,glib "bin")))
253 (inputs
254 `(("gtk+-2" ,gtk+-2))); required by garcon-gtk2-1.pc
255 (propagated-inputs
256 `(("gtk+-3" ,gtk+) ; required by garcon-gtk3-1.pc
257 ("libxfce4ui" ,libxfce4ui))) ; required by garcon-gtk3-1.pc
258 (home-page "https://www.xfce.org/")
259 (synopsis "Implementation of the freedesktop.org menu specification")
260 (description
261 "Garcon is a freedesktop.org compliant menu implementation based on
262 GLib and GIO. It was started as a complete rewrite of the former Xfce menu
263 library called libxfce4menu, which, in contrast to garcon, was lacking menu
264 merging features essential for loading menus modified with menu editors.")
265 (license lgpl2.0+)))
266
267 (define-public tumbler
268 (package
269 (name "tumbler")
270 (version "0.2.8")
271 (source (origin
272 (method url-fetch)
273 (uri (string-append "https://archive.xfce.org/src/xfce/"
274 "tumbler/" (version-major+minor version) "/"
275 "tumbler-" version ".tar.bz2"))
276 (sha256
277 (base32
278 "15iyx4xk6v3vk8272c848y8rj4sq43khlqxndnai0w5mvsivk689"))))
279 (build-system gnu-build-system)
280 (native-inputs
281 `(("pkg-config" ,pkg-config)
282 ("intltool" ,intltool)
283 ("glib:bin" ,glib "bin") ; need glib-genmarshal
284 ("dbus-glib" ,dbus-glib))) ; need dbus-binding-tool
285 (propagated-inputs
286 `(("glib" ,glib))) ; required by tumbler-1.pc
287 (inputs
288 `(("dbus" ,dbus)
289 ("gdk-pixbuf" ,gdk-pixbuf)
290 ("cairo" ,cairo) ;; Needed for pdf thumbnails (poppler-glibc.pc)
291 ("freetype" ,freetype)
292 ("libjpeg" ,libjpeg)
293 ("libgsf" ,libgsf)
294 ("poppler" ,poppler)
295 ;; FIXME Provide gstreamer and gstreamer-tag to get video thumbnails
296 ;; ("gstreamer" ,gstreamer)
297 ))
298 (home-page "https://www.xfce.org/")
299 (synopsis "D-Bus service for applications to request thumbnails")
300 (description
301 "Tumbler is a D-Bus service for applications to request thumbnails for
302 various URI schemes and MIME types. It is an implementation of the thumbnail
303 management D-Bus specification.")
304 (license gpl2+)))
305
306 (define-public xfce4-panel
307 (package
308 (name "xfce4-panel")
309 (version "4.14.0")
310 (source (origin
311 (method url-fetch)
312 (uri (string-append "https://archive.xfce.org/src/xfce/"
313 name "/" (version-major+minor version) "/"
314 name "-" version ".tar.bz2"))
315 (sha256
316 (base32
317 "1x3flv86jh9vqah7mr5mmfx2991mc6icsqjygsc3j88lgsyz7y6m"))
318 (patches (search-patches "xfce4-panel-plugins.patch"))))
319 (build-system gnu-build-system)
320 (arguments
321 `(#:phases
322 (modify-phases %standard-phases
323 (add-after 'unpack 'fix-tzdata-path
324 (lambda* (#:key inputs #:allow-other-keys)
325 (substitute* (string-append "plugins/clock/clock.c")
326 (("/usr/share/zoneinfo")
327 (string-append (assoc-ref inputs "tzdata") "/share/zoneinfo")))
328 #t)))))
329 (native-inputs
330 `(("pkg-config" ,pkg-config)
331 ("intltool" ,intltool)
332 ("glib:bin" ,glib "bin")))
333 (propagated-inputs
334 `(("gtk+-3" ,gtk+) ; required by libxfce4panel-2.0.pc
335 ("libxfce4util" ,libxfce4util))) ; required by libxfce4panel-2.0.pc
336 (inputs
337 `(("tzdata" ,tzdata) ;; For fix-tzdata-path phase only.
338 ("exo" ,exo)
339 ("gtk+-2" ,gtk+-2)
340 ("xfconf" ,xfconf)
341 ("garcon" ,garcon)
342 ("libwnck" ,libwnck)
343 ("libxfce4ui" ,libxfce4ui)))
344 (native-search-paths
345 (list (search-path-specification
346 (variable "X_XFCE4_LIB_DIRS")
347 (files '("lib/xfce4")))))
348 (home-page "https://www.xfce.org/")
349 (synopsis "Xfce desktop panel")
350 (description
351 "Desktop panel for Xfce, which contains program launchers, window buttons,
352 applications menu, workspace switcher and more.")
353 ;; Libraries are under LGPLv2.1+, and programs under GPLv2+.
354 (license (list gpl2+ lgpl2.1+))))
355
356 (define-public xfce4-battery-plugin
357 (package
358 (name "xfce4-battery-plugin")
359 (version "1.1.3")
360 (source (origin
361 (method url-fetch)
362 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
363 name "/" (version-major+minor version) "/"
364 name "-" version ".tar.bz2"))
365 (sha256
366 (base32
367 "18s0s004nidii8cc3ldp5n3jajc18vwn9vhkhmhy3lbbs520mghj"))))
368 (build-system gnu-build-system)
369 (native-inputs `(("pkg-config" ,pkg-config)
370 ("intltool" ,intltool)))
371 (inputs `(("glib" ,glib)
372 ("gtk+" ,gtk+)
373 ("libxfce4util" ,libxfce4util)
374 ("libxfce4ui" ,libxfce4ui)
375 ("xfce4-panel" ,xfce4-panel)))
376 (home-page
377 "https://goodies.xfce.org/projects/panel-plugins/xfce4-battery-plugin")
378 (synopsis "Battery monitor panel plugin for Xfce4")
379 (description
380 "A battery monitor panel plugin for Xfce4, compatible with APM and ACPI.")
381 ;; The main plugin code is covered by gpl2+, but the files containing code
382 ;; to read the battery state via ACPI or APM are covered by lgpl2.0+.
383 (license (list gpl2+ lgpl2.0+))))
384
385 (define-public xfce4-clipman-plugin
386 (package
387 (name "xfce4-clipman-plugin")
388 (version "1.4.4")
389 (source (origin
390 (method url-fetch)
391 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
392 "xfce4-clipman-plugin/" (version-major+minor version) "/"
393 "xfce4-clipman-plugin-" version ".tar.bz2"))
394 (sha256
395 (base32
396 "1819kjn7gs30zhhj2ppfw4zjpcgj9amw1vvppjsavsff1xflrq88"))))
397 (build-system gnu-build-system)
398 (native-inputs
399 `(("intltool" ,intltool)
400 ("pkg-config" ,pkg-config)))
401 (inputs
402 `(("exo" ,exo)
403 ("libxfce4ui" ,libxfce4ui)
404 ("libxtst" ,libxtst)
405 ("xfce4-panel" ,xfce4-panel)))
406 (home-page
407 "https://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin")
408 (synopsis "Clipboard manager for Xfce")
409 (description
410 "Clipman is a clipboard manager for Xfce. It keeps the clipboard contents
411 around while it is usually lost when you close an application. It is able to
412 handle text and images, and has a feature to execute actions on specific text by
413 matching them against regular expressions.")
414 (license (list gpl2+))))
415
416 (define-public xfce4-pulseaudio-plugin
417 (package
418 (name "xfce4-pulseaudio-plugin")
419 (version "0.4.2")
420 (source (origin
421 (method url-fetch)
422 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
423 name "/" (version-major+minor version) "/"
424 name "-" version ".tar.bz2"))
425 (sha256
426 (base32
427 "0851b0vs5xmy3cq899khcghmkqwvh9rnzwavi17msrsq4jyaxs2a"))))
428 (build-system gnu-build-system)
429 (arguments
430 `(#:phases
431 ;; For dbus/dbus-glib.h in pulseaudio-config.h
432 (modify-phases %standard-phases
433 (add-after 'set-paths 'augment-cflags
434 (lambda* (#:key inputs #:allow-other-keys)
435 (setenv "C_INCLUDE_PATH"
436 (string-append (assoc-ref inputs "dbus-glib")
437 "/include/dbus-1.0" ":"
438 (assoc-ref inputs "dbus")
439 "/include/dbus-1.0" ":"
440 (or (getenv "C_INCLUDE_PATH") "")))
441 #t)))))
442 (native-inputs
443 `(("intltool" ,intltool)
444 ("pkg-config" ,pkg-config)
445 ("dbus-glib" ,dbus-glib)
446 ("dbus" ,dbus)))
447 (inputs
448 `(("exo" ,exo)
449 ("libnotify" ,libnotify)
450 ("libxfce4ui" ,libxfce4ui)
451 ("pulseaudio" ,pulseaudio)
452 ("xfce4-panel" ,xfce4-panel)))
453 (home-page "https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
454 (synopsis "PulseAudio panel plugin for Xfce")
455 (description
456 "Xfce PulseAudio plugin is a plugin for the Xfce panel which provides a
457 convenient way to adjust the audio volume of the PulseAudio sound system and
458 to an auto mixer tool like pavucontrol. It can optionally handle multimedia
459 keys for controlling the audio volume.")
460 (license gpl2+)))
461
462 (define-public xfce4-whiskermenu-plugin
463 (package
464 (name "xfce4-whiskermenu-plugin")
465 (version "2.3.4")
466 (source
467 (origin
468 (method url-fetch)
469 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
470 "xfce4-whiskermenu-plugin/" (version-major+minor version) "/"
471 "xfce4-whiskermenu-plugin-" version ".tar.bz2"))
472 (sha256
473 (base32 "03jpcbdpkgg825g7mr630wxynachymsrnyhz32mkl0jsd4sxxlw4"))))
474 (build-system cmake-build-system)
475 (native-inputs
476 `(("pkg-config" ,pkg-config)
477 ("intltool" ,intltool)))
478 (inputs
479 `(("xfce4-panel" ,xfce4-panel)
480 ("garcon" ,garcon)
481 ("exo" ,exo)
482 ("gtk+" ,gtk+)
483 ("libxfce4ui" ,libxfce4ui)))
484 (arguments
485 `(#:tests? #f)) ; no tests
486 (home-page "https://goodies.xfce.org/projects/panel-plugins/xfce4-whiskermenu-plugin")
487 (synopsis "Application menu panel plugin for Xfce")
488 (description
489 "This package provides an alternative to the default application menu
490 panel plugin for Xfce4. It uses separate sections to display categories and
491 applications, and includes a search bar to search for applications.")
492 ;; The main plugin code is covered by gpl2, but files in panel-plugin directory
493 ;; are covered by gpl2+. The SVG icon is covered by gpl2.
494 (license (list gpl2 gpl2+))))
495
496 (define-public xfce4-xkb-plugin
497 (package
498 (name "xfce4-xkb-plugin")
499 (version "0.8.1")
500 (source (origin
501 (method url-fetch)
502 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
503 name "/" (version-major+minor version) "/"
504 name "-" version ".tar.bz2"))
505 (sha256
506 (base32
507 "18b7cnaf3zxm598p2i47vim3kbbi8w923ia1hwabdph1c89cz7n1"))))
508 (build-system gnu-build-system)
509 (native-inputs
510 `(("intltool" ,intltool)
511 ("pkg-config" ,pkg-config)))
512 (inputs
513 `(("garcon" ,garcon)
514 ("librsvg" ,librsvg)
515 ("libwnck" ,libwnck)
516 ("libx11" ,libx11)
517 ("libxfce4ui" ,libxfce4ui)
518 ("libxklavier" ,libxklavier)
519 ("xfce4-panel" ,xfce4-panel)))
520 (home-page "https://git.xfce.org/panel-plugins/xfce4-xkb-plugin/")
521 (synopsis "XKB layout switching panel plug-in for Xfce")
522 (description
523 "Xfce XKB plugin makes it possible to set up and use multiple
524 keyboard layouts.
525
526 One can choose the keyboard model, what key combination to
527 use to switch between the layouts, the actual keyboard layouts,
528 the way in which the current layout is being displayed (country
529 flag image or text) and the layout policy, which is whether to
530 store the layout globally (for all windows), per application or
531 per window.")
532 (license bsd-2)))
533
534 (define-public xfce4-appfinder
535 (package
536 (name "xfce4-appfinder")
537 (version "4.14.0")
538 (source (origin
539 (method url-fetch)
540 (uri (string-append "http://archive.xfce.org/xfce/"
541 (version-major+minor version)
542 "/src/" name "-" version ".tar.bz2"))
543 (sha256
544 (base32
545 "162dibl6ipp72x0s35yhk7kkzxd4qimagg5zdkkv5kjgjpa7bhby"))))
546 (build-system gnu-build-system)
547 (native-inputs
548 `(("pkg-config" ,pkg-config)
549 ("intltool" ,intltool)))
550 (inputs
551 `(("garcon" ,garcon)
552 ("gtk+" ,gtk+)
553 ("libxfce4ui" ,libxfce4ui)))
554 (home-page "https://www.xfce.org/")
555 (synopsis "Xfce application finder")
556 (description
557 "Application finder for Xfce, it will show the applications installed on
558 your system in categories, so you can quickly find and launch them.")
559 (license gpl2+)))
560
561 (define-public xfce4-session
562 (package
563 (name "xfce4-session")
564 (version "4.14.0")
565 (source (origin
566 (method url-fetch)
567 (uri (string-append "https://archive.xfce.org/src/xfce/"
568 name "/" (version-major+minor version) "/"
569 name "-" version ".tar.bz2"))
570 (sha256
571 (base32
572 "0gq4a8yiw58hb4d5dhvprxvzamqfg8qblmiqcw0b97mn9svnvyql"))
573 (modules '((guix build utils)))
574 (snippet
575 '(begin
576 (substitute* "xfsm-shutdown-helper/main.c"
577 (("/sbin/shutdown -h now") "halt")
578 (("/sbin/shutdown -r now") "restart")
579 (("/usr/sbin/pm-suspend") "pm-suspend")
580 (("/usr/sbin/pm-hibernate") "pm-hibernate"))
581 #t))))
582 (build-system gnu-build-system)
583 (arguments
584 '(#:configure-flags
585 (list (string-append "--with-xsession-prefix=" %output))
586 ;; Disable icon cache update.
587 #:make-flags
588 '("gtk_update_icon_cache=true")))
589 (native-inputs
590 `(("pkg-config" ,pkg-config)
591 ("intltool" ,intltool)))
592 (inputs
593 `(("iceauth" ,iceauth)
594 ("upower" ,upower)
595 ("polkit" ,polkit)
596 ("libsm" ,libsm)
597 ("libwnck" ,libwnck)
598 ("libxfce4ui" ,libxfce4ui)))
599 (home-page "https://www.xfce.org/")
600 (synopsis "Xfce session manager")
601 (description
602 "Session manager for Xfce, it will restore your session on startup and
603 allows you to shutdown the computer from Xfce.")
604 (license gpl2+)))
605
606 (define-public xfce4-settings
607 (package
608 (name "xfce4-settings")
609 (version "4.14.0")
610 (source (origin
611 (method url-fetch)
612 (uri (string-append "http://archive.xfce.org/src/xfce/"
613 name "/" (version-major+minor version) "/"
614 name "-" version ".tar.bz2"))
615 (sha256
616 (base32
617 "0g0ipkg2fyg8r1z95ynx0xjr78bp49c2dwh4mli05nmb4gb40c70"))
618 (patches (search-patches "xfce4-settings-defaults.patch"))))
619 (build-system gnu-build-system)
620 (arguments
621 `(#:configure-flags '("--enable-pluggable-dialogs"
622 "--enable-sound-settings"
623 "--enable-xrandr")))
624 (native-inputs
625 `(("pkg-config" ,pkg-config)
626 ("intltool" ,intltool)))
627 (inputs
628 `(("exo" ,exo)
629 ("garcon" ,garcon)
630 ("libnotify" ,libnotify)
631 ("libxcursor" ,libxcursor)
632 ("libxi" ,libxi)
633 ("libxklavier" ,libxklavier)
634 ("libxrandr" ,libxrandr)
635 ("libxfce4ui" ,libxfce4ui)
636 ("upower" ,upower)
637 ("xf86-input-libinput" ,xf86-input-libinput)))
638 (home-page "https://www.xfce.org/")
639 (synopsis "Xfce settings manager")
640 (description
641 "Settings manager for Xfce, it can control various aspects of the desktop
642 like appearance, display, keyboard and mouse settings.")
643 (license gpl2+)))
644
645 (define-public thunar
646 (package
647 (name "thunar")
648 (version "1.8.12")
649 (source (origin
650 (method url-fetch)
651 (uri (string-append "http://archive.xfce.org/src/xfce/"
652 "thunar/" (version-major+minor version) "/"
653 "thunar-" version ".tar.bz2"))
654 (sha256
655 (base32
656 "1y1548jrx93c9v8ks60mkd9sx5xl69fmwh1pbr9gsnqz1gp5na99"))))
657 (build-system gnu-build-system)
658 (native-inputs
659 `(("pkg-config" ,pkg-config)
660 ("intltool" ,intltool)))
661 (inputs
662 `(("exo" ,exo)
663 ("libexif" ,libexif)
664 ("libgudev" ,libgudev)
665 ("libnotify" ,libnotify)
666 ("libxfce4ui" ,libxfce4ui)
667 ("pcre" ,pcre)
668 ("xfce4-panel" ,xfce4-panel)
669 ("startup-notification" ,startup-notification)))
670 (home-page "https://www.xfce.org/")
671 (synopsis "Xfce file manager")
672 (description
673 "A modern file manager for graphical desktop, aiming to be easy-to-use and
674 fast.")
675 (license gpl2+)))
676
677 (define-public thunar-volman
678 (package
679 (name "thunar-volman")
680 (version "0.9.5")
681 (source
682 (origin
683 (method url-fetch)
684 (uri (string-append "https://archive.xfce.org/src/xfce/thunar-volman/"
685 (version-major+minor version) "/"
686 "thunar-volman-" version ".tar.bz2"))
687 (sha256
688 (base32 "0dqqkbhn43hhmhqyx1fnmawpvysdjzw6ln4ryf629wil6dlwd9vy"))))
689 (build-system gnu-build-system)
690 (native-inputs
691 `(("pkg-config" ,pkg-config)
692 ("intltool" ,intltool)))
693 (inputs
694 `(("exo" ,exo)
695 ("libgudev" ,libgudev)
696 ("libnotify" ,libnotify)
697 ("libxfce4ui" ,libxfce4ui)))
698 (home-page "https://www.xfce.org/")
699 (synopsis "Removable media manager for Thunar")
700 (description
701 "Thunar-volman is an extension for the Thunar File Manager, which enables
702 automatic management of removable drives and media. For example, if
703 thunar-volman is installed and configured properly, and you plug in your
704 digital camera, it will automatically spawn your preferred photo application
705 and import the new pictures from your camera.")
706 (license gpl2+)))
707
708 (define-public xfwm4
709 (package
710 (name "xfwm4")
711 (version "4.14.0")
712 (source (origin
713 (method url-fetch)
714 (uri (string-append "https://archive.xfce.org/src/xfce/"
715 name "/" (version-major+minor version) "/"
716 name "-" version ".tar.bz2"))
717 (sha256
718 (base32
719 "05dn4a1i0nm6wm3nyj7qli5bvfalxghcl7x543qr5l33vkw2n65l"))))
720 (build-system gnu-build-system)
721 (native-inputs
722 `(("pkg-config" ,pkg-config)
723 ("intltool" ,intltool)))
724 (inputs
725 `(("libdrm" ,libdrm)
726 ("libwnck" ,libwnck)
727 ("libxcomposite" ,libxcomposite)
728 ("libxdamage" ,libxdamage)
729 ("libxfce4ui" ,libxfce4ui)
730 ("libxrandr" ,libxrandr)))
731 (home-page "https://www.xfce.org/")
732 (synopsis "Xfce window manager")
733 (description
734 "Window manager for Xfce, it handles the placement of windows
735 on the screen.")
736 (license gpl2+)))
737
738 (define-public xfdesktop
739 (package
740 (name "xfdesktop")
741 (version "4.14.1")
742 (source (origin
743 (method url-fetch)
744 (uri (string-append "https://archive.xfce.org/src/xfce/"
745 name "/" (version-major+minor version) "/"
746 name "-" version ".tar.bz2"))
747 (sha256
748 (base32
749 "10pqxgpj7b57wpcsh2k98sj4aavcgxbs1lc8qsq4mibf4hba01gp"))
750 (modules '((guix build utils)))
751 (snippet
752 #~(begin
753 (copy-file #$(file-append %artwork-repository "/logo/Guix.svg")
754 "backgrounds/guix-logo.svg")
755 #t))))
756 (build-system gnu-build-system)
757 (arguments
758 `(#:phases (modify-phases %standard-phases
759 (add-before 'configure 'prepare-background-image
760 (lambda _
761 ;; Stick a Guix logo in the background image. XXX: It
762 ;; has to go to the center because the image might be
763 ;; truncated on the edges. :-/
764 (invoke "inkscape" "--export-dpi=120"
765 "--export-png=/tmp/guix.png"
766 "backgrounds/guix-logo.svg")
767 (for-each (lambda (image)
768 (invoke "composite" "-gravity" "center"
769 "/tmp/guix.png" image
770 "/tmp/final.jpg")
771 (copy-file "/tmp/final.jpg" image))
772 '(;; "backgrounds/xfce-blue.jpg"
773 "backgrounds/xfce-teal.jpg"))
774 #t)))
775
776 #:disallowed-references (,inkscape ,imagemagick)))
777 (native-inputs
778 `(("pkg-config" ,pkg-config)
779 ("intltool" ,intltool)
780
781 ("inkscape" ,inkscape)
782 ("imagemagick" ,imagemagick)))
783 (inputs
784 `(("exo" ,exo)
785 ("garcon" ,garcon)
786 ("libnotify" ,libnotify)
787 ("libwnck" ,libwnck)
788 ("libxfce4ui" ,libxfce4ui)
789 ("thunar" ,thunar)))
790 (home-page "https://www.xfce.org/")
791 (synopsis "Xfce desktop manager")
792 (description
793 "Desktop manager for Xfce, it sets the background color or image with
794 optional application menu or icons for minimized applications or launchers,
795 devices and folders.")
796 (license gpl2+)))
797
798 (define-public xfce4-terminal
799 (package
800 (name "xfce4-terminal")
801 (version "0.8.8")
802 (source (origin
803 (method url-fetch)
804 (uri (string-append "https://archive.xfce.org/src/apps/" name "/"
805 (version-major+minor version) "/"
806 name "-" version ".tar.bz2"))
807 (sha256
808 (base32
809 "1zc7hkq77ajia099wxgh4wdvwifcg2zkcz5d2xsf1zm0sdh6mflg"))))
810 (build-system gnu-build-system)
811 (native-inputs
812 `(("pkg-config" ,pkg-config)
813 ("intltool" ,intltool)))
814 (inputs
815 `(("libxfce4ui" ,libxfce4ui)
816 ("vte" ,vte)))
817 (home-page "https://www.xfce.org/")
818 (synopsis "Xfce terminal emulator")
819 (description
820 "A lightweight and easy to use terminal emulator for Xfce. Features
821 include a simple configuration interface, the ability to use multiple tabs
822 with terminals within a single window, the possibility to have a
823 pseudo-transparent terminal background, and a compact mode (where both the
824 menubar and the window decorations are hidden) that helps you to save space
825 on your desktop.")
826 (license gpl2+)))
827
828 (define-public xfce
829 (package
830 (name "xfce")
831 (version (package-version xfce4-session))
832 (source #f)
833 (build-system trivial-build-system)
834 (arguments
835 '(#:modules ((guix build union))
836 #:builder
837 (begin
838 (use-modules (ice-9 match)
839 (guix build union))
840 (match %build-inputs
841 (((names . directories) ...)
842 (union-build (assoc-ref %outputs "out")
843 directories)
844 #t)))))
845 (inputs
846 `(("exo" ,exo)
847 ("garcon" ,garcon)
848 ("gnome-icon-theme" ,gnome-icon-theme)
849 ("gtk-xfce-engine" ,gtk-xfce-engine)
850 ("hicolor-icon-theme" ,hicolor-icon-theme)
851 ("ristretto" ,ristretto)
852 ("shared-mime-info" ,shared-mime-info)
853 ("thunar" ,thunar)
854 ("thunar-volman" ,thunar-volman)
855 ("tumlber" ,tumbler)
856 ("xfce4-appfinder" ,xfce4-appfinder)
857 ("xfce4-panel" ,xfce4-panel)
858 ("xfce4-power-manager" ,xfce4-power-manager)
859 ("xfce4-session" ,xfce4-session)
860 ("xfce4-settings" ,xfce4-settings)
861 ("xfce4-terminal" ,xfce4-terminal)
862 ("xfconf" ,xfconf)
863 ("xfdesktop" ,xfdesktop)
864 ("xfwm4" ,xfwm4)
865 ;; Panel plugins.
866 ("xfce4-battery-plugin" ,xfce4-battery-plugin)
867 ("xfce4-clipman-plugin" ,xfce4-clipman-plugin)
868 ("xfce4-pulseaudio-plugin" ,xfce4-pulseaudio-plugin)
869 ("xfce4-xkb-plugin" ,xfce4-xkb-plugin)))
870 (native-search-paths
871 ;; For finding panel plugins.
872 (package-native-search-paths xfce4-panel))
873 (home-page "https://www.xfce.org/")
874 (synopsis "Desktop environment (meta-package)")
875 (description
876 "Xfce is a lightweight desktop environment. It aims to be fast and low on
877 system resources, while still being visually appealing and user friendly.")
878 (license gpl2+)))
879
880 (define-public xfce4-power-manager
881 (package
882 (name "xfce4-power-manager")
883 (version "1.6.5")
884 (source (origin
885 (method url-fetch)
886 (uri (string-append "https://archive.xfce.org/src/xfce/"
887 name "/" (version-major+minor version) "/"
888 name "-" version ".tar.bz2"))
889 (sha256
890 (base32
891 "0x3s2bdwfhp65dz5yn3k43j99ywqlsvrpz3pqmgwm0dik5wbdb8h"))))
892 (build-system gnu-build-system)
893 (native-inputs
894 `(("pkg-config" ,pkg-config)
895 ("intltool" ,intltool)))
896 (inputs
897 `(("libxrandr" ,libxrandr)
898 ("gtk+" ,gtk+)
899 ("upower" ,upower)
900 ("libnotify" ,libnotify)
901 ("libxfce4ui" ,libxfce4ui)))
902 (home-page "https://www.xfce.org/")
903 (synopsis "Xfce Power Manager")
904 (description
905 "This is a power manager for the Xfce desktop. It manages the power
906 sources on the computer and the devices that can be controlled to reduce their
907 power consumption (such as LCD brightness level, monitor sleep, CPU frequency
908 scaling, etc). In addition, xfce4-power-manager provides a set of
909 freedesktop-compliant DBus interfaces to inform other applications about current
910 power level so that they can adjust their power consumption, and it provides the
911 inhibit interface which allows applications to prevent automatic sleep.")
912 (license gpl2+)))
913
914 (define-public ristretto
915 (package
916 (name "ristretto")
917 (version "0.10.0")
918 (source (origin
919 (method url-fetch)
920 (uri (string-append "http://archive.xfce.org/src/apps/ristretto/"
921 (version-major+minor version) "/"
922 "ristretto-" version ".tar.bz2"))
923 (sha256
924 (base32
925 "0sa75m1w6yvv4xvzrwqiif6vnqgi29hjrixrh87nxss58bbms8hn"))))
926 (build-system gnu-build-system)
927 (native-inputs
928 `(("intltool" ,intltool)
929 ("pkg-config" ,pkg-config)))
930 (inputs
931 `(("desktop-file-utils" ,desktop-file-utils)
932 ("gtk+" ,gtk+)
933 ("libexif" ,libexif)
934 ("libxfce4ui" ,libxfce4ui)
935 ("librsvg" ,librsvg)
936 ("tumbler" ,tumbler)))
937 (home-page "https://docs.xfce.org/apps/ristretto/start")
938 (synopsis "Fast and lightweight picture-viewer")
939 (description
940 "The Ristretto Image Viewer is an application that can be used to view,
941 and scroll through images. It can be used to run a slideshow of images, open
942 images with other applications like an image-editor or configure an image as
943 the desktop wallpaper.")
944 (license gpl2+)))
945
946 (define-public xfce4-taskmanager
947 (package
948 (name "xfce4-taskmanager")
949 (version "1.2.2")
950 (source (origin
951 (method url-fetch)
952 (uri (string-append "https://archive.xfce.org/src/apps/"
953 name "/" (version-major+minor version) "/"
954 name "-" version ".tar.bz2"))
955 (sha256
956 (base32
957 "04qflazmdrj4ys4r54yg4s5pqcjgk02idrjsls395zd4374636p4"))))
958 (build-system gnu-build-system)
959 (native-inputs
960 `(("intltool" ,intltool)
961 ("pkg-config" ,pkg-config)))
962 (inputs
963 `(("libwnck" ,libwnck)
964 ("libxmu" ,libxmu)
965 ("gtk+" ,gtk+)
966 ;; FIXME: Remove libxext and libxt when libxmu propagates them.
967 ("libxext" ,libxext)
968 ("libxt" ,libxt)))
969 (home-page "https://goodies.xfce.org/projects/applications/xfce4-taskmanager")
970 (synopsis "Easy to use task manager")
971 (description
972 "This is a task manager for the Xfce desktop. It displays the CPU and
973 memory usage graphically, and it can display processes as a tree.")
974 (license gpl2+)))
975
976 (define-public orage
977 (package
978 (name "orage")
979 (version "4.12.1")
980 (source (origin
981 (method url-fetch)
982 (uri (string-append "http://archive.xfce.org/src/apps/"
983 name "/" (version-major+minor version) "/"
984 name "-" version ".tar.bz2"))
985 (sha256
986 (base32
987 "0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"))))
988 (arguments
989 `(#:phases
990 (modify-phases %standard-phases
991 (add-after 'unpack 'fix-build-with-libical3
992 (lambda* _
993 (substitute* "src/ical-code.c" ;; .is_utc not available in libical3
994 ((".*\\.is_utc.*$") ""))
995 #t)))))
996 (build-system gnu-build-system)
997 (native-inputs
998 `(("intltool" ,intltool)
999 ("pkg-config" ,pkg-config)))
1000 (inputs
1001 `(("gtk+" ,gtk+-2)
1002 ("libical" ,libical)
1003 ("libnotify" ,libnotify)
1004 ("popt" ,popt)
1005 ("xfce4-panel" ,xfce4-panel)))
1006 (home-page "https://www.xfce.org/projects/")
1007 (synopsis "Simple calendar application with reminders")
1008 (description
1009 "This is a simple calendar application for the Xfce desktop. Orage has
1010 alarms and uses the iCalendar format, making it compatible with many other
1011 calendar applications. It also includes a panel clock plugin and an
1012 international clock application capable of simultaneously showing clocks from
1013 several different time zones.")
1014 (license gpl2+)))
1015
1016 (define-public xfce4-notifyd
1017 (package
1018 (name "xfce4-notifyd")
1019 (version "0.4.4")
1020 (source (origin
1021 (method url-fetch)
1022 (uri (string-append "https://archive.xfce.org/src/apps/"
1023 name "/" (version-major+minor version) "/"
1024 name "-" version ".tar.bz2"))
1025 (sha256
1026 (base32
1027 "0m8vlbwdxiw9nmimaj5np9l5qm784gxpkdvc881k0hjcz6n72189"))))
1028 (build-system glib-or-gtk-build-system)
1029 (native-inputs
1030 `(("intltool" ,intltool)
1031 ("pkg-config" ,pkg-config)))
1032 (inputs
1033 `(("libxfce4ui" ,libxfce4ui)
1034 ("libnotify" ,libnotify)
1035 ("xfce4-panel" ,xfce4-panel)))
1036 (home-page "https://goodies.xfce.org/projects/applications/xfce4-notifyd")
1037 (synopsis "Show notification bubbles on Xfce")
1038 (description
1039 "The Xfce Notify Daemon (xfce4-notifyd for short) is a smallish program
1040 that implements the “server-side” portion of the Freedesktop desktop
1041 notifications specification. Applications that wish to pop up a notification
1042 bubble in a standard way can implicitly make use of xfce4-notifyd to do so by
1043 sending standard messages over D-Bus using the
1044 @code{org.freedesktop.Notifications} interface.")
1045 (license gpl2)))
1046
1047 (define-public xfburn
1048 (package
1049 (name "xfburn")
1050 (version "0.6.1")
1051 (source (origin
1052 (method url-fetch)
1053 (uri (string-append "http://archive.xfce.org/src/apps/xfburn/"
1054 (version-major+minor version) "/"
1055 "xfburn-" version ".tar.bz2"))
1056 (sha256
1057 (base32
1058 "0ydka5lf9n614gb5xc9bn9297nilgmkfqlb7q1y2yrc97882nxxk"))))
1059 (build-system gnu-build-system)
1060 (native-inputs
1061 `(("intltool" ,intltool)
1062 ("pkg-config" ,pkg-config)))
1063 (inputs
1064 `(("exo" ,exo)
1065 ("gstreamer" ,gstreamer)
1066 ("gst-plugins-base" ,gst-plugins-base)
1067 ("gst-plugins-good" ,gst-plugins-good)
1068 ("gst-plugins-ugly" ,gst-plugins-ugly)
1069 ("glib" ,glib)
1070 ("gtk+" ,gtk+)
1071 ("libburn" ,libburn)
1072 ("libisofs" ,libisofs)
1073 ("libxfce4ui" ,libxfce4ui)))
1074 (home-page "https://goodies.xfce.org/projects/applications/xfburn")
1075 (synopsis "GTK+ based CD, DVD and Blu-ray burning application")
1076 (description
1077 "Xfburn is a simple CD, DVD, and Blu-ray burning tool based on
1078 the libburnia libraries. It can blank CD/DVD/BD(-RW)s, burn and
1079 create iso images, audio CDs, as well as burn personal compositions
1080 of data to either CD/DVD/BD.")
1081 (license gpl2+)))
1082
1083 (define-public mousepad
1084 (package
1085 (name "mousepad")
1086 (version "0.4.2")
1087 (source (origin
1088 (method url-fetch)
1089 (uri (string-append "http://archive.xfce.org/src/apps/mousepad/"
1090 (version-major+minor version) "/mousepad-"
1091 version ".tar.bz2"))
1092 (sha256
1093 (base32
1094 "1myy7954r1a30dk7inwy7kwki7zvfbnnsc3a8swk72vzrbgjmh44"))))
1095 (build-system gnu-build-system)
1096 (arguments
1097 '(#:configure-flags '(;; Use the GSettings keyfile backend rather than
1098 ;; DConf.
1099 "--enable-keyfile-settings")
1100 #:phases
1101 (modify-phases %standard-phases
1102 (add-after 'install 'wrap-program
1103 (lambda* (#:key inputs outputs #:allow-other-keys)
1104 (let ((out (assoc-ref outputs "out"))
1105 (gtksourceview (assoc-ref inputs "gtksourceview")))
1106 (wrap-program (string-append out "/bin/mousepad")
1107 ;; For language-specs.
1108 `("XDG_DATA_DIRS" ":" prefix (,(string-append gtksourceview
1109 "/share")))))
1110 #t)))))
1111 (native-inputs
1112 `(("intltool" ,intltool)
1113 ("glib" ,glib "bin") ; for glib-compile-schemas.
1114 ("pkg-config" ,pkg-config)))
1115 (inputs
1116 `(("gtk+" ,gtk+)
1117 ("gtksourceview" ,gtksourceview-3)
1118 ("xfconf" ,xfconf)))
1119 (home-page "https://git.xfce.org/apps/mousepad/")
1120 (synopsis "Simple text editor for Xfce")
1121 (description
1122 "Mousepad is a graphical text editor for Xfce based on Leafpad.")
1123 (license gpl2+)))
1124
1125 (define-public xfce4-screenshooter
1126 (package
1127 (name "xfce4-screenshooter")
1128 (version "1.9.7")
1129 (source (origin
1130 (method url-fetch)
1131 (uri (string-append "http://archive.xfce.org/src/apps/"
1132 "xfce4-screenshooter/"
1133 (version-major+minor version)
1134 "/xfce4-screenshooter-"
1135 version ".tar.bz2"))
1136 (sha256
1137 (base32
1138 "1lbhl0sh0ayv3zhgzcd9hj9q9m3lnyv7vlglfqrl39i3782n2w8g"))))
1139 (build-system gnu-build-system)
1140 (native-inputs
1141 `(("pkg-config" ,pkg-config)
1142 ("intltool" ,intltool)
1143 ("glib:bin" ,glib "bin"))) ; glib-genmarshal
1144 (inputs
1145 `(("exo" ,exo)
1146 ("libsoup" ,libsoup)
1147 ("libxfce4ui" ,libxfce4ui)
1148 ("xfce4-panel" ,xfce4-panel)))
1149 (home-page "https://goodies.xfce.org/projects/applications/xfce4-screenshooter")
1150 (synopsis "Xfce's application to take screenshots")
1151 (description
1152 "This application allows you to capture the entire screen, the active
1153 window or a selected region. You can set the delay that elapses before the screenshot
1154 is taken and the action that will be done with the screenshot.
1155 A plugin for the Xfce panel is also available.")
1156 (license gpl2+)))
1157
1158 (define-public xfce4-screensaver
1159 (package
1160 (name "xfce4-screensaver")
1161 (version "0.1.8")
1162 (source (origin
1163 (method url-fetch)
1164 (uri (string-append "http://archive.xfce.org/src/apps/"
1165 "xfce4-screensaver/"
1166 (version-major+minor version)
1167 "/xfce4-screensaver-"
1168 version ".tar.bz2"))
1169 (sha256
1170 (base32
1171 "1mv0r150yb29kji2rr2462g9p574bqjax1lb6bzcqgpxlmg08mj0"))))
1172 (build-system gnu-build-system)
1173 (arguments
1174 `(#:phases
1175 (modify-phases %standard-phases
1176 (add-after 'unpack 'fix-dbus-1-path
1177 (lambda* (#:key outputs #:allow-other-keys)
1178 (let* ((out (assoc-ref outputs "out"))
1179 (dbus-dir (string-append out "/share/dbus-1/services")))
1180 (substitute* "configure"
1181 (("DBUS_SESSION_SERVICE_DIR=.*")
1182 (string-append "DBUS_SESSION_SERVICE_DIR="
1183 dbus-dir)))))))))
1184 (native-inputs
1185 `(("pkg-config" ,pkg-config)
1186 ("intltool" ,intltool)
1187 ("glib" ,glib) ; glib-compile-schemas
1188 ("glib:bin" ,glib "bin"))) ; glib-compile-schemas
1189 (inputs
1190 `(("dbus-glib" ,dbus-glib)
1191 ("libux-pam" ,linux-pam)
1192 ("elogind" ,elogind)
1193 ("garcon" ,garcon)
1194 ("libxklavier" ,libxklavier)
1195 ("libwnxk" ,libwnck)
1196 ("libxscrnsaver" ,libxscrnsaver)
1197 ("xfconf" ,xfconf)))
1198 (home-page "https://docs.xfce.org/apps/screensaver/start")
1199 (synopsis "Screensaver for the Xfce desktop")
1200 (description
1201 "Xfce Screensaver is a screen saver and locker that aims to have simple,
1202 sane, secure defaults and be well integrated with the Xfce desktop. ")
1203 (license gpl2+)))
1204
1205 (define-public xfce4-volumed-pulse
1206 (package
1207 (name "xfce4-volumed-pulse")
1208 (version "0.2.3")
1209 (source (origin
1210 (method url-fetch)
1211 (uri (string-append "https://archive.xfce.org/src/apps/"
1212 name "/" (version-major+minor version) "/"
1213 name "-" version ".tar.bz2"))
1214 (sha256
1215 (base32
1216 "1q639iwwj7q2plgz0wdgdbi5wkgaq177ca9rnnlrnbdmid5z5fqk"))))
1217 (build-system glib-or-gtk-build-system)
1218 (native-inputs
1219 `(("intltool" ,intltool)
1220 ("pkg-config" ,pkg-config)))
1221 (inputs
1222 `(("xfconf" ,xfconf)
1223 ("libnotify" ,libnotify)
1224 ("pulseaudio" ,pulseaudio)
1225 ("keybinder-3.0" ,keybinder-3.0)
1226 ("gtk+" ,gtk+)))
1227 (home-page "https://goodies.xfce.org/projects/applications/xfce4-volumed")
1228 (synopsis "XFCE volume keys daemon")
1229 (description
1230 "This is a volume keys control daemon for Xfce Desktop environment. It controls
1231 the volume using multimedia keys. It also provides volume change notifications.")
1232 (license gpl3+)))
1233
1234 (define-public xfce4-cpugraph-plugin
1235 (package
1236 (name "xfce4-cpugraph-plugin")
1237 (version "1.1.0")
1238 (source (origin
1239 (method url-fetch)
1240 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1241 "xfce4-cpugraph-plugin/"
1242 (version-major+minor version)
1243 "/xfce4-cpugraph-plugin-" version ".tar.bz2"))
1244 (sha256
1245 (base32
1246 "193bj1p54l4zrvgdjj0pvjn161d6dn82jh9invcy09sqwlj0mkiy"))))
1247 (build-system gnu-build-system)
1248 (native-inputs
1249 `(("intltool" ,intltool)
1250 ("pkg-config" ,pkg-config)))
1251 (inputs
1252 `(("libxfce4ui" ,libxfce4ui)
1253 ("xfce4-panel" ,xfce4-panel)))
1254 (home-page
1255 "https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin")
1256 (synopsis "Display CPU load as a graph in the Xfce panel")
1257 (description "This panel plugin offers multiple display
1258 modes (LED, gradient, fire, etc…) to show the current CPU load of the
1259 system. Various appearance options, like colors or size, are
1260 customizable.
1261
1262 On multi core or multi CPU systems, CPU Graph can either track and
1263 display all of them at once, or at the user's option only a specific
1264 core or CPU.")
1265 (license gpl2+)))
1266
1267 (define-public xfce4-eyes-plugin
1268 (package
1269 (name "xfce4-eyes-plugin")
1270 (version "4.5.0")
1271 (source (origin
1272 (method url-fetch)
1273 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1274 "xfce4-eyes-plugin/"
1275 (version-major+minor version)
1276 "/xfce4-eyes-plugin-" version ".tar.bz2"))
1277 (sha256
1278 (base32
1279 "17gj6fbvvrdzvz61czmia8hqynllsnmhk61fs4aml443cc1h1bpx"))))
1280 (build-system gnu-build-system)
1281 (native-inputs
1282 `(("intltool" ,intltool)
1283 ("pkg-config" ,pkg-config)))
1284 (inputs
1285 `(("libxfce4ui" ,libxfce4ui)
1286 ("xfce4-panel" ,xfce4-panel)))
1287 (home-page
1288 "https://goodies.xfce.org/projects/panel-plugins/xfce4-eyes-plugin")
1289 (synopsis "Display a pair of eyes for the Xfce panel")
1290 (description "Eyes is a toy Xfce panel plugin that adds eyes which
1291 watch your every step.")
1292 (license gpl2+)))
1293
1294 (define-public xfce4-equake-plugin
1295 (package
1296 (name "xfce4-equake-plugin")
1297 (version "1.3.8")
1298 (source (origin
1299 (method url-fetch)
1300 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1301 "xfce4-equake-plugin/"
1302 (version-major+minor version)
1303 "/xfce4-equake-plugin-" version ".tar.bz2"))
1304 (sha256
1305 (base32
1306 "09b9k0n5xm115k44x74w4ad0xqklilyfh0hglsps7zj97pd7a5a3"))))
1307 (build-system gnu-build-system)
1308 (native-inputs
1309 `(("intltool" ,intltool)
1310 ("pkg-config" ,pkg-config)))
1311 (inputs
1312 `(("gtk+-2" ,gtk+-2)
1313 ("libxfce4ui" ,libxfce4ui)
1314 ("xfce4-panel" ,xfce4-panel)))
1315 (home-page
1316 "https://goodies.xfce.org/projects/panel-plugins/xfce4-equake-plugin")
1317 (synopsis "Earthquake monitor for the Xfce panel")
1318 (description "Equake is a panel plugin for the XFCE desktop
1319 environment. Equake monitors earthquakes and will display an update
1320 each time a new earthquake occurs.")
1321 (license gpl2+)))
1322
1323 (define-public xfce4-datetime-plugin
1324 (package
1325 (name "xfce4-datetime-plugin")
1326 (version "0.8.0")
1327 (source (origin
1328 (method url-fetch)
1329 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1330 "xfce4-datetime-plugin/"
1331 (version-major+minor version)
1332 "/xfce4-datetime-plugin-" version ".tar.bz2"))
1333 (sha256
1334 (base32
1335 "1m7bmpvbmiz2xdffpg675qn80zx2n0cnlf842ppvh1q7zz18ndfd"))))
1336 (build-system gnu-build-system)
1337 (native-inputs
1338 `(("intltool" ,intltool)
1339 ("pkg-config" ,pkg-config)))
1340 (inputs
1341 `(("libxfce4ui" ,libxfce4ui)
1342 ("xfce4-panel" ,xfce4-panel)))
1343 (home-page
1344 "https://goodies.xfce.org/projects/panel-plugins/xfce4-datetime-plugin")
1345 (synopsis "Display date and time inside the Xfce panel")
1346 (description "This plugin shows the date and time in the panel,
1347 and a calendar appears when you left-click on it.")
1348 (license gpl2+)))
1349
1350 (define-public xfce4-calculator-plugin
1351 (package
1352 (name "xfce4-calculator-plugin")
1353 (version "0.7.0")
1354 (source (origin
1355 (method url-fetch)
1356 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1357 "xfce4-calculator-plugin/"
1358 (version-major+minor version)
1359 "/xfce4-calculator-plugin-" version ".tar.bz2"))
1360 (sha256
1361 (base32
1362 "1scx7z5ijg2fpcqrzv1nxhpj9vrqic7pyghig70f2n5hgaaanl3v"))))
1363 (build-system gnu-build-system)
1364 (native-inputs
1365 `(("intltool" ,intltool)
1366 ("pkg-config" ,pkg-config)))
1367 (inputs
1368 `(("libxfce4ui" ,libxfce4ui)
1369 ("xfce4-panel" ,xfce4-panel)))
1370 (home-page
1371 "https://goodies.xfce.org/projects/panel-plugins/xfce4-calculator-plugin")
1372 (synopsis "Calculator for the Xfce panel")
1373 (description "This plugin is a calculator for the Xfce4 panel. It
1374 supports common mathematical operators (+, -, *, /, ^) with usual
1375 precedence rules, and the following functions and common constants.")
1376 (license gpl2+)))
1377
1378 (define-public xfce4-cpufreq-plugin
1379 (package
1380 (name "xfce4-cpufreq-plugin")
1381 (version "1.2.1")
1382 (source (origin
1383 (method url-fetch)
1384 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1385 "xfce4-cpufreq-plugin/"
1386 (version-major+minor version)
1387 "/xfce4-cpufreq-plugin-" version ".tar.bz2"))
1388 (sha256
1389 (base32
1390 "1dgmx3ygil51s1az298ly0gybcw8ln1dz8q8y9k207a0vk049q65"))))
1391 (build-system gnu-build-system)
1392 (native-inputs
1393 `(("intltool" ,intltool)
1394 ("pkg-config" ,pkg-config)))
1395 (inputs
1396 `(("libxfce4ui" ,libxfce4ui)
1397 ("xfce4-panel" ,xfce4-panel)))
1398 (home-page
1399 "https://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin")
1400 (synopsis "Xfce panel plugin for displaying CPU frequency")
1401 (description "This panel plugin shows information about the CPU
1402 governor and frequencies supported and used by your system.")
1403 (license gpl2+)))
1404
1405 (define-public xfce4-diskperf-plugin
1406 (package
1407 (name "xfce4-diskperf-plugin")
1408 (version "2.6.2")
1409 (source (origin
1410 (method url-fetch)
1411 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1412 "xfce4-diskperf-plugin/"
1413 (version-major+minor version)
1414 "/xfce4-diskperf-plugin-" version ".tar.bz2"))
1415 (sha256
1416 (base32
1417 "0i4nrsvwcn15g5gmnba9p07sad3c96x517l2lybdw8jqv91rhbpx"))))
1418 (build-system gnu-build-system)
1419 (native-inputs
1420 `(("intltool" ,intltool)
1421 ("pkg-config" ,pkg-config)))
1422 (inputs
1423 `(("libxfce4ui" ,libxfce4ui)
1424 ("xfce4-panel" ,xfce4-panel)))
1425 (home-page
1426 "https://goodies.xfce.org/projects/panel-plugins/xfce4-diskperf-plugin")
1427 (synopsis "Display disk performance in the Xfce panel")
1428 (description "This Xfce panel plugin displays instant disk/partition
1429 performance (bytes transferred per second).")
1430 (license gpl2+)))
1431
1432 (define-public xfce4-embed-plugin
1433 (package
1434 (name "xfce4-embed-plugin")
1435 (version "1.6.0")
1436 (source (origin
1437 (method url-fetch)
1438 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1439 "xfce4-embed-plugin/"
1440 (version-major+minor version)
1441 "/xfce4-embed-plugin-" version ".tar.bz2"))
1442 (sha256
1443 (base32
1444 "0a72kqsjjh45swimqlpyrahdnplp0383v0i4phr4n6g8c1ixyry7"))))
1445 (build-system gnu-build-system)
1446 (native-inputs
1447 `(("intltool" ,intltool)
1448 ("pkg-config" ,pkg-config)))
1449 (inputs
1450 `(("libxfce4ui" ,libxfce4ui)
1451 ("xfce4-panel" ,xfce4-panel)
1452 ("gtk+-2" ,gtk+-2)))
1453 (home-page
1454 "https://goodies.xfce.org/projects/panel-plugins/xfce4-embed-plugin")
1455 (synopsis "Embed arbitrary applications inside the Xfce panel")
1456 (description "This plugin enables the embedding of arbitrary
1457 application windows into the Xfce panel. The window is resized into
1458 the panel space available, and the associated program can be
1459 automatically launched if it is not open.
1460
1461 Example uses include embedding an instant messaging buddy list, a mail
1462 client's new mail ticker, a simple media application, or a fancy clock
1463 or timer. Combining with Xfce's ability to auto-hide panels can make
1464 this very convenient.")
1465 (license gpl2+)))
1466
1467 (define-public xfce4-fsguard-plugin
1468 (package
1469 (name "xfce4-fsguard-plugin")
1470 (version "1.1.1")
1471 (source (origin
1472 (method url-fetch)
1473 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1474 "xfce4-fsguard-plugin/"
1475 (version-major+minor version)
1476 "/xfce4-fsguard-plugin-" version ".tar.bz2"))
1477 (sha256
1478 (base32
1479 "05nmfkrmifm76bsywqmbjd1qdvzagv5cbvnwbkb57156j055vl6n"))))
1480 (build-system gnu-build-system)
1481 (native-inputs
1482 `(("intltool" ,intltool)
1483 ("pkg-config" ,pkg-config)))
1484 (inputs
1485 `(("libxfce4ui" ,libxfce4ui)
1486 ("xfce4-panel" ,xfce4-panel)))
1487 (home-page
1488 "https://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin")
1489 (synopsis "Xfce panel plugin to monitor free disk space")
1490 (description "The panel plugin checks free space on a chosen mount
1491 point frequently and displays a message when a limit is reached. There
1492 are two limits: a warning limit where only the icon changes, and an
1493 urgent limit that advise the user with a message. The icon button can
1494 be clicked to open the chosen mount point.")
1495 (license bsd-2)))
1496
1497 (define-public xfce4-genmon-plugin
1498 (package
1499 (name "xfce4-genmon-plugin")
1500 (version "4.0.2")
1501 (source (origin
1502 (method url-fetch)
1503 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1504 "xfce4-genmon-plugin/"
1505 (version-major+minor version)
1506 "/xfce4-genmon-plugin-" version ".tar.bz2"))
1507 (sha256
1508 (base32
1509 "1ai3pwgv61nv7i2dyrvncnc63r8kdjbkp40vp51vzak1dx924v15"))))
1510 (build-system gnu-build-system)
1511 (native-inputs
1512 `(("intltool" ,intltool)
1513 ("pkg-config" ,pkg-config)))
1514 (inputs
1515 `(("libxfce4ui" ,libxfce4ui)
1516 ("xfce4-panel" ,xfce4-panel)))
1517 (home-page
1518 "https://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin")
1519 (synopsis "Generic program output monitor for the Xfce panel")
1520 (description "This plugin cyclically spawns the indicated
1521 script/program, captures its output (stdout) and displays the
1522 resulting string into the panel.
1523
1524 The string can also contain markup to displayed an image, a bar, a
1525 button and a personalized tooltip.")
1526 (license gpl2+)))
1527
1528 (define-public xfce4-kbdleds-plugin
1529 (package
1530 (name "xfce4-kbdleds-plugin")
1531 (version "0.0.6")
1532 (source (origin
1533 (method url-fetch)
1534 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1535 "xfce4-kbdleds-plugin/"
1536 (version-major+minor version)
1537 "/xfce4-kbdleds-plugin-" version ".tar.bz2"))
1538 (sha256
1539 (base32
1540 "1k810asjjxwix1c7ixl7bqr97zc4j2mw7797gk49rjvv43bhla3d"))))
1541 (build-system gnu-build-system)
1542 (native-inputs
1543 `(("intltool" ,intltool)
1544 ("pkg-config" ,pkg-config)))
1545 (inputs
1546 `(("gtk+-2" ,gtk+-2)
1547 ("libxfce4ui" ,libxfce4ui)
1548 ("xfce4-panel" ,xfce4-panel)))
1549 (home-page
1550 "https://goodies.xfce.org/projects/panel-plugins/xfce4-kbdleds-plugin")
1551 (synopsis "Display keyboard LEDs in the Xfce panel")
1552 (description "This plugin shows the state of your keyboard LEDs:
1553 Caps, Scroll and Num Lock in Xfce panel.")
1554 (license gpl2+)))
1555
1556 (define-public xfce4-mailwatch-plugin
1557 (package
1558 (name "xfce4-mailwatch-plugin")
1559 (version "1.2.0")
1560 (source (origin
1561 (method url-fetch)
1562 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1563 "xfce4-mailwatch-plugin/"
1564 (version-major+minor version)
1565 "/xfce4-mailwatch-plugin-" version ".tar.bz2"))
1566 (sha256
1567 (base32
1568 "1bfw3smwivr9mzdyq768biqrl4aq94zqi3xjzq6kqnd8561cqjk2"))))
1569 (build-system gnu-build-system)
1570 (native-inputs
1571 `(("intltool" ,intltool)
1572 ("pkg-config" ,pkg-config)))
1573 (inputs
1574 `(("gtk+-2" ,gtk+-2)
1575 ("libxfce4ui" ,libxfce4ui)
1576 ("exo" ,exo)
1577 ("xfce4-panel" ,xfce4-panel)))
1578 (home-page
1579 "https://goodies.xfce.org/projects/panel-plugins/xfce4-mailwatch-plugin")
1580 (synopsis "Mail watch plugin for the Xfce panel")
1581 (description "The Xfce4 Mailwatch Plugin is a multi-protocol,
1582 multi-mailbox mail watcher. Currently, the protocols supported are:
1583
1584 @itemize
1585 @item IMAP (SSL/TLS and cleartext, CRAM-MD5)
1586 @item POP3 (SSL/TLS and cleartext, CRAM-MD5)
1587 @item Mbox mail spool (local)
1588 @item Maildir mail spool (local)
1589 @item MH-Maildir mail spool (local)
1590 @item Google Mail (GMail) mailbox (remote) (requires gnutls)
1591 @end itemize")
1592 (license gpl2)))
1593
1594 (define-public xfce4-mpc-plugin
1595 (package
1596 (name "xfce4-mpc-plugin")
1597 (version "0.5.2")
1598 (source (origin
1599 (method url-fetch)
1600 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1601 "xfce4-mpc-plugin/"
1602 (version-major+minor version)
1603 "/xfce4-mpc-plugin-" version ".tar.bz2"))
1604 (sha256
1605 (base32
1606 "0q3pysdp85b3c7g3b59y3c69g4nw6bvbf518lnri4lxrnsvpizpf"))))
1607 (build-system gnu-build-system)
1608 (native-inputs
1609 `(("intltool" ,intltool)
1610 ("pkg-config" ,pkg-config)))
1611 (inputs
1612 `(("libxfce4ui" ,libxfce4ui)
1613 ("xfce4-panel" ,xfce4-panel)))
1614 (home-page "https://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin")
1615 (synopsis "Music Player Daemon plugin for the Xfce panel")
1616 (description "This is a simple client plugin for Music Player Daemon.
1617
1618 Features:
1619 @itemize
1620 @item send Play/Stop/Next/Previous command to MPD.
1621 @item uses media icons names from icon-naming-spec (at least nuvola,
1622 tango and rodent themes provides these icons)
1623 @item decrease/increase volume using the mouse wheel.
1624 @item show the current volume, status and title as a tooltip when
1625 hovering the mouse over the plugin.
1626 @item show a simple playlist window upon middle-click, permitting to
1627 select a track to play
1628 @item configurable MPD host/port/password.
1629 @item toggles repeat/random features + enable/disable MPD outputs in
1630 the right-click menu.
1631 @item launch configurable client (gmpc, xterm -e ncmpc,..) through
1632 right-click menu
1633 @item configurable markup for tooltip and playlist, using a gmpc-like markup
1634 @end itemize")
1635 (license isc)))
1636
1637 (define-public xfce4-mount-plugin
1638 (package
1639 (name "xfce4-mount-plugin")
1640 (version "1.1.3")
1641 (source (origin
1642 (method url-fetch)
1643 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1644 "xfce4-mount-plugin/"
1645 (version-major+minor version)
1646 "/xfce4-mount-plugin-" version ".tar.bz2"))
1647 (sha256
1648 (base32
1649 "07lijjhimjrcyrhasr2299km6wm22xcd3fazdfpqvisbk1mvvrda"))))
1650 (build-system gnu-build-system)
1651 (native-inputs
1652 `(("intltool" ,intltool)
1653 ("pkg-config" ,pkg-config)))
1654 (inputs
1655 `(("libxfce4ui" ,libxfce4ui)
1656 ("xfce4-panel" ,xfce4-panel)))
1657 (home-page
1658 "https://goodies.xfce.org/projects/panel-plugins/xfce4-mount-plugin")
1659 (synopsis "Mount/unmount plugin for the Xfce panel")
1660 (description "The plugin will display a list of items representing
1661 your various devices. If you click on an unmounted devices it will
1662 mount it and vice versa. There is a warning in case a device can't be
1663 mounted or when unmounting fails.")
1664 (license gpl2+)))
1665
1666 (define-public xfce4-netload-plugin
1667 (package
1668 (name "xfce4-netload-plugin")
1669 (version "1.3.2")
1670 (source (origin
1671 (method url-fetch)
1672 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1673 "xfce4-netload-plugin/"
1674 (version-major+minor version)
1675 "/xfce4-netload-plugin-" version ".tar.bz2"))
1676 (sha256
1677 (base32
1678 "0p91875n6s8n88l7wb4w9prqly3wvkyilnr7zq0ppq71rwjh9r12"))))
1679 (build-system gnu-build-system)
1680 (native-inputs
1681 `(("intltool" ,intltool)
1682 ("pkg-config" ,pkg-config)))
1683 (inputs
1684 `(("libxfce4ui" ,libxfce4ui)
1685 ("xfce4-panel" ,xfce4-panel)))
1686 (home-page
1687 "https://goodies.xfce.org/projects/panel-plugins/xfce4-netload-plugin")
1688 (synopsis "Netload plugin for the Xfce Panel")
1689 (description "This plugin displays the current load of the network
1690 interfaces of your choice in the panel.")
1691 (license gpl2+)))
1692
1693 (define-public xfce4-places-plugin
1694 (package
1695 (name "xfce4-places-plugin")
1696 (version "1.8.1")
1697 (source (origin
1698 (method url-fetch)
1699 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1700 "xfce4-places-plugin/"
1701 (version-major+minor version)
1702 "/xfce4-places-plugin-" version ".tar.bz2"))
1703 (sha256
1704 (base32
1705 "1chac4ki70axgvkmhw94m0srsv0pwiwqrqbh8di0y9n90fgj24gj"))))
1706 (build-system gnu-build-system)
1707 (native-inputs
1708 `(("intltool" ,intltool)
1709 ("pkg-config" ,pkg-config)))
1710 (inputs
1711 `(("desktop-file-utils" ,desktop-file-utils)
1712 ("gtk+-2" ,gtk+-2)
1713 ("exo" ,exo)
1714 ("libxfce4ui" ,libxfce4ui)
1715 ("xfce4-panel" ,xfce4-panel)))
1716 (home-page
1717 "https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin")
1718 (synopsis "Gnome-like Places menu for the Xfce panel")
1719 (description "This plugin provides a menu with quick access to folders,
1720 documents, and removable media. The places plugin brings much of the
1721 functionality of GNOME's Places menu to Xfce.
1722
1723 The plugin puts a simple button on the panel. Clicking on this button
1724 opens up a menu with the following:
1725
1726 @itemize
1727 @item System-defined directories (home folder, trash, desktop, file system)
1728 @item Removable media (using thunar-vfs)
1729 @item User-defined bookmarks (reads @file{~/.gtk-bookmarks})
1730 @item Search program launcher (optional)
1731 @item Recent documents submenu
1732 @end itemize")
1733 (license gpl2+)))
1734
1735 (define-public xfce4-smartbookmark-plugin
1736 (package
1737 (name "xfce4-smartbookmark-plugin")
1738 (version "0.5.1")
1739 (source (origin
1740 (method url-fetch)
1741 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1742 "xfce4-smartbookmark-plugin/"
1743 (version-major+minor version)
1744 "/xfce4-smartbookmark-plugin-" version ".tar.bz2"))
1745 (sha256
1746 (base32
1747 "001nf2bqly8vm868qvafzgihc9463c488mkim24iw9g2s9ygna1y"))))
1748 (build-system gnu-build-system)
1749 (native-inputs
1750 `(("intltool" ,intltool)
1751 ("pkg-config" ,pkg-config)))
1752 (inputs
1753 `(("libxfce4ui" ,libxfce4ui)
1754 ("xfce4-panel" ,xfce4-panel)))
1755 (home-page
1756 "https://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin")
1757 (synopsis "Perform custom searches in your browser from the Xfce panel")
1758 (description "This plugin allows you to send search requests
1759 directly to your browser, such that you can search through your
1760 favorite search engine or bug tracker right from the Xfce panel.")
1761 (license gpl2+)))
1762
1763 (define-public xfce4-statusnotifier-plugin
1764 (package
1765 (name "xfce4-statusnotifier-plugin")
1766 (version "0.2.1")
1767 (source (origin
1768 (method url-fetch)
1769 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1770 "xfce4-statusnotifier-plugin/"
1771 (version-major+minor version)
1772 "/xfce4-statusnotifier-plugin-" version ".tar.bz2"))
1773 (sha256
1774 (base32
1775 "154b0q9pmlbjh30vvx4c48msdfxp4pq8x4mbn71mk7pibk018hsj"))))
1776 (build-system gnu-build-system)
1777 (native-inputs
1778 `(("intltool" ,intltool)
1779 ("pkg-config" ,pkg-config)
1780 ("glib:bin" ,glib "bin")))
1781 (inputs
1782 `(("libxfce4ui" ,libxfce4ui)
1783 ("libdbusmenu" ,libdbusmenu)
1784 ("xfce4-panel" ,xfce4-panel)))
1785 (home-page
1786 "https://goodies.xfce.org/projects/panel-plugins/xfce4-statusnotifier-plugin")
1787 (synopsis "Xfce panel plugin for status notifier items")
1788 (description "This plugin provides a panel area for status
1789 notifier items (application indicators). Applications may use these
1790 items to display their status and interact with the user. This
1791 technology is a modern alternative to systray and follows the
1792 freedesktop.org specification.")
1793 (license gpl2+)))
1794
1795 (define-public xfce4-stopwatch-plugin
1796 (package
1797 (name "xfce4-stopwatch-plugin")
1798 (version "0.3.1")
1799 (source (origin
1800 (method url-fetch)
1801 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1802 "xfce4-stopwatch-plugin/"
1803 (version-major+minor version)
1804 "/xfce4-stopwatch-plugin-" version ".tar.bz2"))
1805 (sha256
1806 (base32
1807 "07dadvgivly44w7qj74i2w60nk01h8567paxrli8vzmhb3p6xi2h"))))
1808 (build-system gnu-build-system)
1809 (arguments
1810 ;; test fails in po/ directory
1811 `(#:tests? #f))
1812 (native-inputs
1813 `(("intltool" ,intltool)
1814 ("pkg-config" ,pkg-config)))
1815 (inputs
1816 `(("libxfce4ui" ,libxfce4ui)
1817 ("xfce4-panel" ,xfce4-panel)))
1818 (home-page
1819 "https://goodies.xfce.org/projects/panel-plugins/xfce4-stopwatch-plugin")
1820 (synopsis "Stopwatch plugin for the Xfce panel")
1821 (description "This Xfce panel plugin keeps track of elapsed time.")
1822 (license bsd-2)))
1823
1824 (define-public xfce4-systemload-plugin
1825 (package
1826 (name "xfce4-systemload-plugin")
1827 (version "1.2.3")
1828 (source (origin
1829 (method url-fetch)
1830 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1831 "xfce4-systemload-plugin/"
1832 (version-major+minor version)
1833 "/xfce4-systemload-plugin-" version ".tar.bz2"))
1834 (sha256
1835 (base32
1836 "0x87a8h5l3ashz1ksfaxcpn9a392jzlsbx5n5pga8g90fp2hf905"))))
1837 (build-system gnu-build-system)
1838 (native-inputs
1839 `(("intltool" ,intltool)
1840 ("pkg-config" ,pkg-config)))
1841 (inputs
1842 `(("libxfce4ui" ,libxfce4ui)
1843 ("xfce4-panel" ,xfce4-panel)))
1844 (home-page
1845 "https://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin")
1846 (synopsis "System load display plugin for the Xfce panel")
1847 (description "A system load plugin for the Xfce4 desktop
1848 environment. It displays the current CPU load, the memory in use, the
1849 swap space and the system uptime in the Xfce4 panel.")
1850 (license bsd-2)))
1851
1852 (define-public xfce4-time-out-plugin
1853 (package
1854 (name "xfce4-time-out-plugin")
1855 (version "1.1.0")
1856 (source (origin
1857 (method url-fetch)
1858 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1859 "xfce4-time-out-plugin/"
1860 (version-major+minor version)
1861 "/xfce4-time-out-plugin-" version ".tar.bz2"))
1862 (sha256
1863 (base32
1864 "068a8ck08g4g1msbr7hd5zzp6lsq2a1ry1r472x0rmbna2im2jpf"))))
1865 (build-system gnu-build-system)
1866 (native-inputs
1867 `(("intltool" ,intltool)
1868 ("pkg-config" ,pkg-config)))
1869 (inputs
1870 `(("gtk+" ,gtk+)
1871 ("libxfce4ui" ,libxfce4ui)
1872 ("xfce4-panel" ,xfce4-panel)))
1873 (home-page
1874 "https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin")
1875 (synopsis "Xfce panel plugin that encourages periodical breaks")
1876 (description "This plugin encourages to take periodical
1877 breaks from the computer every X minutes. During breaks it locks your
1878 screen. It optionally allows you to postpone breaks for a certain
1879 time.")
1880 (license gpl2+)))
1881
1882 (define-public xfce4-timer-plugin
1883 (package
1884 (name "xfce4-timer-plugin")
1885 (version "1.7.0")
1886 (source (origin
1887 (method url-fetch)
1888 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1889 "xfce4-timer-plugin/"
1890 (version-major+minor version)
1891 "/xfce4-timer-plugin-" version ".tar.bz2"))
1892 (sha256
1893 (base32
1894 "16vypwwjwfk7nn4n16rfgn0z78jqrmbgxmc1r46269lrwd1m6kif"))))
1895 (build-system gnu-build-system)
1896 (native-inputs
1897 `(("intltool" ,intltool)
1898 ("pkg-config" ,pkg-config)))
1899 (inputs
1900 `(("libxfce4ui" ,libxfce4ui)
1901 ("xfce4-panel" ,xfce4-panel)))
1902 (home-page
1903 "https://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin")
1904 (synopsis "Simple countdown and alarm plugin for the Xfce panel")
1905 (description "This is a simple plugin that lets the user run an
1906 alarm at a specified time or at the end of a specified countdown
1907 period.")
1908 (license gpl2+)))
1909
1910 (define-public xfce4-verve-plugin
1911 (package
1912 (name "xfce4-verve-plugin")
1913 (version "2.0.0")
1914 (source (origin
1915 (method url-fetch)
1916 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1917 "xfce4-verve-plugin/"
1918 (version-major+minor version)
1919 "/xfce4-verve-plugin-" version ".tar.bz2"))
1920 (sha256
1921 (base32
1922 "1ljcmgc8ixrbz134ggxbbh4zzdnp7mhi9ay6s5hgrz28djx10rcy"))))
1923 (build-system gnu-build-system)
1924 (native-inputs
1925 `(("intltool" ,intltool)
1926 ("pkg-config" ,pkg-config)))
1927 (inputs
1928 `(("libxfce4ui" ,libxfce4ui)
1929 ("xfce4-panel" ,xfce4-panel)))
1930 (home-page
1931 "https://goodies.xfce.org/projects/panel-plugins/xfce4-verve-plugin")
1932 (synopsis "Command line for the Xfce panel")
1933 (description "The Verve plugin provides a comfortable command line
1934 for the Xfce panel. It supports several features, such as:
1935 @itemize
1936 @item Opens URLs, e-mail addresses, directories, and programs
1937 @item Command history
1938 @item Auto-completion (including command history)
1939 @item Focus grabbing via D-BUS (so you can bind a shortcut to it)
1940 @item Custom input field width
1941 @end itemize")
1942 (license gpl2+)))
1943
1944 (define-public xfce4-wavelan-plugin
1945 (package
1946 (name "xfce4-wavelan-plugin")
1947 (version "0.6.1")
1948 (source (origin
1949 (method url-fetch)
1950 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1951 "xfce4-wavelan-plugin/"
1952 (version-major+minor version)
1953 "/xfce4-wavelan-plugin-" version ".tar.bz2"))
1954 (sha256
1955 (base32
1956 "05zdiq1igr1fcvnwlivg8g3szvxmlr3yc7jfj3bwgqrs0vm827zl"))))
1957 (build-system gnu-build-system)
1958 (native-inputs
1959 `(("intltool" ,intltool)
1960 ("pkg-config" ,pkg-config)))
1961 (inputs
1962 `(("libxfce4ui" ,libxfce4ui)
1963 ("xfce4-panel" ,xfce4-panel)))
1964 (home-page
1965 "https://goodies.xfce.org/projects/panel-plugins/xfce4-wavelan-plugin")
1966 (synopsis "Show stats from WLAN interface in Xfce panel")
1967 (description "This plugin is used to display stats from a wireless
1968 lan interface (signal state, signal quality, network name (SSID)).")
1969 (license bsd-2)))
1970
1971 (define-public xfce4-weather-plugin
1972 (package
1973 (name "xfce4-weather-plugin")
1974 (version "0.10.1")
1975 (source (origin
1976 (method url-fetch)
1977 (uri (string-append "http://archive.xfce.org/src/panel-plugins/"
1978 "xfce4-weather-plugin/"
1979 (version-major+minor version)
1980 "/xfce4-weather-plugin-" version ".tar.bz2"))
1981 (sha256
1982 (base32
1983 "12bs2rfmmy021087i10vxibdbbvd5vld0vk3h5hymhpz7rgszcmg"))))
1984 (build-system gnu-build-system)
1985 (native-inputs
1986 `(("intltool" ,intltool)
1987 ("pkg-config" ,pkg-config)))
1988 (inputs
1989 `(("gtk+" ,gtk+)
1990 ("libsoup" ,libsoup)
1991 ("libxfce4ui" ,libxfce4ui)
1992 ("libxml2" ,libxml2)
1993 ("xfce4-panel" ,xfce4-panel)))
1994 (home-page
1995 "https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin")
1996 (synopsis "Show information about local weather in the Xfce panel")
1997 (description "This Xfce panel plugin shows information about your
1998 local weather in the panel, using forecast data provided by the
1999 @uref{https://met.no, Norwegian Meteorological Institute}.")
2000 (license gpl2+)))