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