gnu: Add cl-ana.statistical-learning.
[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>
47956fa0 9;;; Copyright © 2017 ng0 <ng0@n0.is>
177d1af0 10;;; Copyright © 2018, 2019 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>
62ac2ed9
SB
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)
305bc4cc 31 #:use-module ((guix licenses) #:hide (freetype))
62ac2ed9
SB
32 #:use-module (guix packages)
33 #:use-module (guix download)
a9a07903 34 #:use-module (guix gexp)
79c2528f 35 #:use-module (guix utils)
fab9aa1d 36 #:use-module (guix build-system cmake)
b6310608 37 #:use-module (guix build-system glib-or-gtk)
62ac2ed9 38 #:use-module (guix build-system gnu)
6150b5c7 39 #:use-module (guix build-system trivial)
a9a07903 40 #:use-module (gnu artwork)
d814f921 41 #:use-module (gnu packages)
8cc5d3dc 42 #:use-module (gnu packages base)
aea7d1d5 43 #:use-module (gnu packages calendar)
53e1b30e 44 #:use-module (gnu packages cdrom)
62ac2ed9
SB
45 #:use-module (gnu packages pkg-config)
46 #:use-module (gnu packages glib)
6cec9818 47 #:use-module (gnu packages gtk)
a9a07903
LC
48 #:use-module (gnu packages imagemagick)
49 #:use-module (gnu packages inkscape)
6cec9818 50 #:use-module (gnu packages xorg)
2eb7d77d 51 #:use-module (gnu packages xdisorg)
305bc4cc
SB
52 #:use-module (gnu packages web)
53 #:use-module (gnu packages fontutils)
324b0040 54 #:use-module (gnu packages freedesktop)
305bc4cc
SB
55 #:use-module (gnu packages image)
56 #:use-module (gnu packages gnome)
57 #:use-module (gnu packages pdf)
25a21c7f 58 #:use-module (gnu packages polkit)
5c776d27 59 #:use-module (gnu packages gstreamer)
8549e0ca 60 #:use-module (gnu packages libcanberra)
5c776d27
SB
61 #:use-module (gnu packages linux)
62 #:use-module (gnu packages photo)
0f0c586a 63 #:use-module (gnu packages pcre)
aea7d1d5 64 #:use-module (gnu packages popt)
b6b257ed 65 #:use-module (gnu packages pulseaudio)
59b83c50 66 #:use-module (gnu packages xml)
b6b257ed 67 #:use-module (gnu packages wm))
62ac2ed9
SB
68
69(define-public gtk-xfce-engine
70 (package
71 (name "gtk-xfce-engine")
221d4572 72 (version "2.10.1")
62ac2ed9
SB
73 (source (origin
74 (method url-fetch)
221d4572
SB
75 (uri (string-append "http://archive.xfce.org/src/xfce/"
76 name "/" (version-major+minor version) "/"
62ac2ed9
SB
77 name "-" version ".tar.bz2"))
78 (sha256
79 (base32
221d4572 80 "0g86ywkx0ghzhhn96k88p67bbzlm1aqckly85izp07w80l1934ja"))))
62ac2ed9
SB
81 (build-system gnu-build-system)
82 (native-inputs
83 `(("pkg-config" ,pkg-config)
84 ("intltool" ,intltool)))
85 (inputs `(("gtk+" ,gtk+-2)))
08429f39 86 (home-page "https://www.xfce.org/")
62ac2ed9
SB
87 (synopsis "GTK+ theme engine for Xfce")
88 (description
89 "Default GTK+ engine and themes for Xfce Desktop Environment.")
90 (license gpl2+)))
79c2528f
SB
91
92(define-public libxfce4util
93 (package
94 (name "libxfce4util")
8549e0ca 95 (version "4.14.0")
79c2528f
SB
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
8549e0ca 103 "093338faqqsrlc8dkmzr7qv411ysxczg1wlg7s3gvhrfk6vpkb9j"))))
79c2528f
SB
104 (build-system gnu-build-system)
105 (native-inputs
106 `(("pkg-config" ,pkg-config)
cb8a5e07 107 ("gobject-introspection" ,gobject-introspection)
35d48622 108 ("intltool" ,intltool)
109 ("vala" ,vala)))
79c2528f 110 (propagated-inputs `(("glib" ,glib))) ; required by libxfce4util-1.0.pc
08429f39 111 (home-page "https://www.xfce.org/")
79c2528f
SB
112 (synopsis "Basic utility library for Xfce")
113 (description
114 "A general-purpose utility library with core application support for the
115Xfce Desktop Environment.")
116 (license lgpl2.0+)))
471dbb70
SB
117
118(define-public xfconf
119 (package
120 (name "xfconf")
8549e0ca 121 (version "4.14.1")
471dbb70
SB
122 (source (origin
123 (method url-fetch)
912a81ff
KK
124 (uri (string-append "https://archive.xfce.org/src/xfce/"
125 name "/" (version-major+minor version) "/"
126 name "-" version ".tar.bz2"))
471dbb70
SB
127 (sha256
128 (base32
8549e0ca 129 "0n8d55c98ff7wgwv3qa4g369sv4iasgm1w62zq10kq5f56iy14xq"))))
471dbb70 130 (build-system gnu-build-system)
b2836799
SB
131 (arguments
132 '(#:phases
133 ;; Run check after install phase to test dbus activation.
dc1d3cde 134 (modify-phases %standard-phases
279b5730 135 (add-after 'install 'custom-check
dc1d3cde
KK
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");
215ccb99 143 (invoke "dbus-launch" "make" "check")))
dc1d3cde 144 (delete 'check))))
471dbb70
SB
145 (native-inputs
146 `(("pkg-config" ,pkg-config)
8549e0ca 147 ("intltool" ,intltool)
2c10c418 148 ("glib:bin" ,glib "bin") ;; for gdbus-codegen
dbfd5a13 149 ("gobject-introspection" ,gobject-introspection)
279b5730 150 ("vala" ,vala)
151 ("dbus" ,dbus)))
471dbb70
SB
152 (propagated-inputs
153 ;; libxfconf-0.pc refers to all these.
8549e0ca 154 `(("glib" ,glib)))
471dbb70
SB
155 (inputs
156 `(("libxfce4util" ,libxfce4util)))
08429f39 157 (home-page "https://www.xfce.org/")
471dbb70
SB
158 (synopsis "Configuration storage and query system for Xfce")
159 (description
160 "Settings daemon for Xfce, implemented as a D-Bus-based configuration
161storage system.")
162 (license lgpl2.0+)))
6cec9818
SB
163
164(define-public libxfce4ui
165 (package
166 (name "libxfce4ui")
8549e0ca 167 (version "4.14.1")
6cec9818
SB
168 (source (origin
169 (method url-fetch)
f96cd7ce
KK
170 (uri (string-append "https://archive.xfce.org/src/xfce/"
171 name "/" (version-major+minor version) "/"
172 name "-" version ".tar.bz2"))
6cec9818
SB
173 (sha256
174 (base32
8549e0ca 175 "1npjhznmnckhnylsv3l7p1zvhckhmp9d7vifs8w12kdfmrg0fjf4"))))
6cec9818 176 (build-system gnu-build-system)
64200f01 177 (arguments
178 `(#:configure-flags
179 (list "--with-vendor-info=GNU Guix")))
6cec9818
SB
180 (native-inputs
181 `(("pkg-config" ,pkg-config)
48af9356 182 ("intltool" ,intltool)
183 ("gobject-introspection" ,gobject-introspection)))
6cec9818 184 (propagated-inputs
b8d3a000 185 `(("gtk+-3" ,gtk+) ; required by libxfce4ui-2.pc
75beb7e1 186 ;; libxfce4kbd-private-2.pc refers to all these.
6cec9818
SB
187 ("libxfce4util" ,libxfce4util)
188 ("xfconf" ,xfconf)))
189 (inputs `(("libsm" ,libsm)
190 ("libice" ,libice)
b8d3a000
RW
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)
6cec9818 194 ("startup-notification" ,startup-notification)))
08429f39 195 (home-page "https://www.xfce.org/")
6cec9818
SB
196 (synopsis "Widgets library for Xfce")
197 (description
198 "Libxfce4ui is the replacement of the old libxfcegui4 library. It is used
e881752c 199to share commonly used Xfce widgets among the Xfce applications.")
6cec9818 200 (license lgpl2.0+)))
2eb7d77d
SB
201
202(define-public exo
203 (package
204 (name "exo")
d539ca11 205 (version "0.12.10")
2eb7d77d
SB
206 (source (origin
207 (method url-fetch)
33e6ad83 208 (uri (string-append "https://archive.xfce.org/src/xfce/"
1438306b
TGR
209 "exo/" (version-major+minor version) "/"
210 "exo-" version ".tar.bz2"))
2eb7d77d
SB
211 (sha256
212 (base32
d539ca11 213 "1b3w4pf9gkcp13h63nf93k95hkw0ij7v5y7wjklqd1qifm8xd3w4"))))
2eb7d77d
SB
214 (build-system gnu-build-system)
215 (native-inputs
216 `(("pkg-config" ,pkg-config)
217 ("intltool" ,intltool)))
218 (propagated-inputs
8549e0ca 219 ;; exo-2.pc refers to all these.
220 `(("gtk+-3" ,gtk+)
2eb7d77d
SB
221 ("libxfce4util" ,libxfce4util)))
222 (inputs
8549e0ca 223 `(;; FIXME Refered to in exo-1.pc but conflict with gtk+-3
224 ("gtk+-2" ,gtk+-2)
225 ("libxfce4ui" ,libxfce4ui)
2eb7d77d 226 ("perl-uri" ,perl-uri)))
08429f39 227 (home-page "https://www.xfce.org/")
2eb7d77d
SB
228 (synopsis "Extension library for Xfce")
229 (description
230 "An extension library to Xfce. While Xfce comes with quite a few libraries
231that are targeted at desktop development, libexo is targeted at application
232development.")
233 ;; Libraries are under LGPLv2+, and programs under GPLv2+.
234 (license (list gpl2+ lgpl2.1+))))
7fc3d5f3
SB
235
236(define-public garcon
237 (package
238 (name "garcon")
8549e0ca 239 (version "0.6.4")
7fc3d5f3
SB
240 (source (origin
241 (method url-fetch)
a281a083 242 (uri (string-append "https://archive.xfce.org/src/xfce/"
08f5f6e8
TGR
243 "garcon/" (version-major+minor version) "/"
244 "garcon-" version ".tar.bz2"))
7fc3d5f3
SB
245 (sha256
246 (base32
8549e0ca 247 "0bbngb4bn1m325j7y40gky36kn2nlsvqs6xp0wy76x3s0d9lfpnp"))))
7fc3d5f3
SB
248 (build-system gnu-build-system)
249 (native-inputs
250 `(("pkg-config" ,pkg-config)
251 ("intltool" ,intltool)
252 ("glib:bin" ,glib "bin")))
b8d3a000 253 (inputs
8549e0ca 254 `(("gtk+-2" ,gtk+-2))); required by garcon-gtk2-1.pc
ea3fb8f1 255 (propagated-inputs
8549e0ca 256 `(("gtk+-3" ,gtk+) ; required by garcon-gtk3-1.pc
257 ("libxfce4ui" ,libxfce4ui))) ; required by garcon-gtk3-1.pc
08429f39 258 (home-page "https://www.xfce.org/")
7fc3d5f3
SB
259 (synopsis "Implementation of the freedesktop.org menu specification")
260 (description
261 "Garcon is a freedesktop.org compliant menu implementation based on
262GLib and GIO. It was started as a complete rewrite of the former Xfce menu
263library called libxfce4menu, which, in contrast to garcon, was lacking menu
264merging features essential for loading menus modified with menu editors.")
265 (license lgpl2.0+)))
305bc4cc
SB
266
267(define-public tumbler
268 (package
269 (name "tumbler")
8549e0ca 270 (version "0.2.7")
305bc4cc
SB
271 (source (origin
272 (method url-fetch)
c3ad3d92 273 (uri (string-append "https://archive.xfce.org/src/xfce/"
5cb92d7e
TGR
274 "tumbler/" (version-major+minor version) "/"
275 "tumbler-" version ".tar.bz2"))
305bc4cc
SB
276 (sha256
277 (base32
8549e0ca 278 "1r0l0ghcrj71ax7yil1m4p7yjrfqm3icx0s8r7ivwv3i2rgw617p"))))
305bc4cc
SB
279 (build-system gnu-build-system)
280 (native-inputs
281 `(("pkg-config" ,pkg-config)
282 ("intltool" ,intltool)
a321ac99
TGR
283 ("glib:bin" ,glib "bin") ; need glib-genmarshal
284 ("dbus-glib" ,dbus-glib))) ; need dbus-binding-tool
305bc4cc 285 (propagated-inputs
a321ac99 286 `(("glib" ,glib))) ; required by tumbler-1.pc
305bc4cc
SB
287 (inputs
288 `(("dbus" ,dbus)
289 ("gdk-pixbuf" ,gdk-pixbuf)
2a6f5190 290 ("cairo" ,cairo) ;; Needed for pdf thumbnails (poppler-glibc.pc)
305bc4cc
SB
291 ("freetype" ,freetype)
292 ("libjpeg" ,libjpeg)
293 ("libgsf" ,libgsf)
294 ("poppler" ,poppler)
2bb29718 295 ;; FIXME Provide gstreamer and gstreamer-tag to get video thumbnails
296 ;; ("gstreamer" ,gstreamer)
297 ))
08429f39 298 (home-page "https://www.xfce.org/")
305bc4cc
SB
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
302various URI schemes and MIME types. It is an implementation of the thumbnail
303management D-Bus specification.")
304 (license gpl2+)))
3b3a7fe7
SB
305
306(define-public xfce4-panel
307 (package
308 (name "xfce4-panel")
8549e0ca 309 (version "4.14.0")
3b3a7fe7
SB
310 (source (origin
311 (method url-fetch)
b0f44c67
KK
312 (uri (string-append "https://archive.xfce.org/src/xfce/"
313 name "/" (version-major+minor version) "/"
314 name "-" version ".tar.bz2"))
3b3a7fe7
SB
315 (sha256
316 (base32
8549e0ca 317 "1x3flv86jh9vqah7mr5mmfx2991mc6icsqjygsc3j88lgsyz7y6m"))
fc1adab1 318 (patches (search-patches "xfce4-panel-plugins.patch"))))
3b3a7fe7 319 (build-system gnu-build-system)
8cc5d3dc 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)))))
3b3a7fe7
SB
329 (native-inputs
330 `(("pkg-config" ,pkg-config)
8549e0ca 331 ("intltool" ,intltool)
332 ("glib:bin" ,glib "bin")))
3b3a7fe7 333 (propagated-inputs
8549e0ca 334 `(("gtk+-3" ,gtk+) ; required by libxfce4panel-2.0.pc
335 ("libxfce4util" ,libxfce4util))) ; required by libxfce4panel-2.0.pc
3b3a7fe7 336 (inputs
8cc5d3dc 337 `(("tzdata" ,tzdata) ;; For fix-tzdata-path phase only.
338 ("exo" ,exo)
8549e0ca 339 ("gtk+-2" ,gtk+-2)
340 ("xfconf" ,xfconf)
b3546174 341 ("garcon" ,garcon)
8549e0ca 342 ("libwnck" ,libwnck)
3b3a7fe7 343 ("libxfce4ui" ,libxfce4ui)))
d814f921
MW
344 (native-search-paths
345 (list (search-path-specification
346 (variable "X_XFCE4_LIB_DIRS")
af070955 347 (files '("lib/xfce4")))))
08429f39 348 (home-page "https://www.xfce.org/")
3b3a7fe7
SB
349 (synopsis "Xfce desktop panel")
350 (description
351 "Desktop panel for Xfce, which contains program launchers, window buttons,
352applications menu, workspace switcher and more.")
353 ;; Libraries are under LGPLv2.1+, and programs under GPLv2+.
354 (license (list gpl2+ lgpl2.1+))))
c5c2f9bb 355
bfb84869
MW
356(define-public xfce4-battery-plugin
357 (package
358 (name "xfce4-battery-plugin")
d4902f9a 359 (version "1.1.3")
bfb84869
MW
360 (source (origin
361 (method url-fetch)
40136e24 362 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
bfb84869
MW
363 name "/" (version-major+minor version) "/"
364 name "-" version ".tar.bz2"))
365 (sha256
366 (base32
d4902f9a 367 "18s0s004nidii8cc3ldp5n3jajc18vwn9vhkhmhy3lbbs520mghj"))))
bfb84869
MW
368 (build-system gnu-build-system)
369 (native-inputs `(("pkg-config" ,pkg-config)
370 ("intltool" ,intltool)))
371 (inputs `(("glib" ,glib)
d4902f9a 372 ("gtk+" ,gtk+)
bfb84869
MW
373 ("libxfce4util" ,libxfce4util)
374 ("libxfce4ui" ,libxfce4ui)
375 ("xfce4-panel" ,xfce4-panel)))
376 (home-page
08429f39 377 "https://goodies.xfce.org/projects/panel-plugins/xfce4-battery-plugin")
bfb84869
MW
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
d692678f
SB
385(define-public xfce4-clipman-plugin
386 (package
387 (name "xfce4-clipman-plugin")
ff2c81b0 388 (version "1.4.3")
d692678f
SB
389 (source (origin
390 (method url-fetch)
ff2c81b0 391 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
d692678f
SB
392 name "/" (version-major+minor version) "/"
393 name "-" version ".tar.bz2"))
394 (sha256
395 (base32
ff2c81b0 396 "1liacff4wl5mpyf9dzdrfbwxzmhl95y5nsfc0jf5rgalzdgbik99"))))
d692678f
SB
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
08429f39 407 "https://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin")
d692678f
SB
408 (synopsis "Clipboard manager for Xfce")
409 (description
410 "Clipman is a clipboard manager for Xfce. It keeps the clipboard contents
411around while it is usually lost when you close an application. It is able to
412handle text and images, and has a feature to execute actions on specific text by
413matching them against regular expressions.")
414 (license (list gpl2+))))
415
0f0c586a
SB
416(define-public xfce4-pulseaudio-plugin
417 (package
418 (name "xfce4-pulseaudio-plugin")
8c6cfdd7 419 (version "0.4.2")
0f0c586a
SB
420 (source (origin
421 (method url-fetch)
c8b0f0ab 422 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
0f0c586a
SB
423 name "/" (version-major+minor version) "/"
424 name "-" version ".tar.bz2"))
425 (sha256
426 (base32
8c6cfdd7 427 "0851b0vs5xmy3cq899khcghmkqwvh9rnzwavi17msrsq4jyaxs2a"))))
0f0c586a 428 (build-system gnu-build-system)
8c6cfdd7 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" ":"
e17f1c3d 440 (or (getenv "C_INCLUDE_PATH") "")))
8c6cfdd7 441 #t)))))
0f0c586a
SB
442 (native-inputs
443 `(("intltool" ,intltool)
8c6cfdd7 444 ("pkg-config" ,pkg-config)
445 ("dbus-glib" ,dbus-glib)
446 ("dbus" ,dbus)))
0f0c586a
SB
447 (inputs
448 `(("exo" ,exo)
449 ("libnotify" ,libnotify)
450 ("libxfce4ui" ,libxfce4ui)
451 ("pulseaudio" ,pulseaudio)
452 ("xfce4-panel" ,xfce4-panel)))
08429f39 453 (home-page "https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/")
0f0c586a
SB
454 (synopsis "PulseAudio panel plugin for Xfce")
455 (description
456 "Xfce PulseAudio plugin is a plugin for the Xfce panel which provides a
457convenient way to adjust the audio volume of the PulseAudio sound system and
458to an auto mixer tool like pavucontrol. It can optionally handle multimedia
459keys for controlling the audio volume.")
460 (license gpl2+)))
461
fab9aa1d
P
462(define-public xfce4-whiskermenu-plugin
463 (package
464 (name "xfce4-whiskermenu-plugin")
c3538f08 465 (version "2.3.4")
a8d9d706
TGR
466 (source
467 (origin
468 (method url-fetch)
e0f6d366 469 (uri (string-append "https://archive.xfce.org/src/panel-plugins/"
a8d9d706
TGR
470 "xfce4-whiskermenu-plugin/" (version-major+minor version) "/"
471 "xfce4-whiskermenu-plugin-" version ".tar.bz2"))
472 (sha256
c3538f08 473 (base32 "03jpcbdpkgg825g7mr630wxynachymsrnyhz32mkl0jsd4sxxlw4"))))
fab9aa1d
P
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)
27960865 482 ("gtk+" ,gtk+)
483 ("libxfce4ui" ,libxfce4ui)))
fab9aa1d
P
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
490panel plugin for Xfce4. It uses separate sections to display categories and
491applications, 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
5a179844
AE
496(define-public xfce4-xkb-plugin
497 (package
498 (name "xfce4-xkb-plugin")
3802d759 499 (version "0.8.1")
5a179844
AE
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
3802d759 507 "18b7cnaf3zxm598p2i47vim3kbbi8w923ia1hwabdph1c89cz7n1"))))
5a179844
AE
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)
3802d759 515 ("libwnck" ,libwnck)
5a179844
AE
516 ("libx11" ,libx11)
517 ("libxfce4ui" ,libxfce4ui)
518 ("libxklavier" ,libxklavier)
519 ("xfce4-panel" ,xfce4-panel)))
08429f39 520 (home-page "https://git.xfce.org/panel-plugins/xfce4-xkb-plugin/")
5a179844
AE
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
524keyboard layouts.
525
526One can choose the keyboard model, what key combination to
527use to switch between the layouts, the actual keyboard layouts,
528the way in which the current layout is being displayed (country
529flag image or text) and the layout policy, which is whether to
530store the layout globally (for all windows), per application or
531per window.")
532 (license bsd-2)))
533
c5c2f9bb
SB
534(define-public xfce4-appfinder
535 (package
536 (name "xfce4-appfinder")
8549e0ca 537 (version "4.14.0")
c5c2f9bb
SB
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
8549e0ca 545 "162dibl6ipp72x0s35yhk7kkzxd4qimagg5zdkkv5kjgjpa7bhby"))))
c5c2f9bb
SB
546 (build-system gnu-build-system)
547 (native-inputs
548 `(("pkg-config" ,pkg-config)
549 ("intltool" ,intltool)))
550 (inputs
551 `(("garcon" ,garcon)
8549e0ca 552 ("gtk+" ,gtk+)
c5c2f9bb 553 ("libxfce4ui" ,libxfce4ui)))
08429f39 554 (home-page "https://www.xfce.org/")
c5c2f9bb
SB
555 (synopsis "Xfce application finder")
556 (description
557 "Application finder for Xfce, it will show the applications installed on
558your system in categories, so you can quickly find and launch them.")
559 (license gpl2+)))
9a8a040d
SB
560
561(define-public xfce4-session
562 (package
563 (name "xfce4-session")
8549e0ca 564 (version "4.14.0")
9a8a040d
SB
565 (source (origin
566 (method url-fetch)
d4986c90
KK
567 (uri (string-append "https://archive.xfce.org/src/xfce/"
568 name "/" (version-major+minor version) "/"
569 name "-" version ".tar.bz2"))
9a8a040d
SB
570 (sha256
571 (base32
8549e0ca 572 "0gq4a8yiw58hb4d5dhvprxvzamqfg8qblmiqcw0b97mn9svnvyql"))
25a21c7f
RW
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))))
9a8a040d
SB
582 (build-system gnu-build-system)
583 (arguments
584 '(#:configure-flags
68f1869c
DM
585 (list (string-append "--with-xsession-prefix=" %output))
586 ;; Disable icon cache update.
587 #:make-flags
588 '("gtk_update_icon_cache=true")))
9a8a040d
SB
589 (native-inputs
590 `(("pkg-config" ,pkg-config)
591 ("intltool" ,intltool)))
592 (inputs
593 `(("iceauth" ,iceauth)
25a21c7f
RW
594 ("upower" ,upower)
595 ("polkit" ,polkit)
9a8a040d 596 ("libsm" ,libsm)
8549e0ca 597 ("libwnck" ,libwnck)
9a8a040d 598 ("libxfce4ui" ,libxfce4ui)))
08429f39 599 (home-page "https://www.xfce.org/")
9a8a040d
SB
600 (synopsis "Xfce session manager")
601 (description
602 "Session manager for Xfce, it will restore your session on startup and
603allows you to shutdown the computer from Xfce.")
604 (license gpl2+)))
55613927
SB
605
606(define-public xfce4-settings
607 (package
608 (name "xfce4-settings")
8549e0ca 609 (version "4.14.0")
55613927
SB
610 (source (origin
611 (method url-fetch)
1683dcdc
KK
612 (uri (string-append "http://archive.xfce.org/src/xfce/"
613 name "/" (version-major+minor version) "/"
614 name "-" version ".tar.bz2"))
55613927
SB
615 (sha256
616 (base32
8549e0ca 617 "0g0ipkg2fyg8r1z95ynx0xjr78bp49c2dwh4mli05nmb4gb40c70"))
fc1adab1 618 (patches (search-patches "xfce4-settings-defaults.patch"))))
55613927 619 (build-system gnu-build-system)
8549e0ca 620 (arguments
621 `(#:configure-flags '("--enable-pluggable-dialogs"
622 "--enable-sound-settings"
623 "--enable-xrandr")))
55613927
SB
624 (native-inputs
625 `(("pkg-config" ,pkg-config)
626 ("intltool" ,intltool)))
627 (inputs
628 `(("exo" ,exo)
629 ("garcon" ,garcon)
630 ("libnotify" ,libnotify)
b3546174 631 ("libxcursor" ,libxcursor)
55613927 632 ("libxi" ,libxi)
2f8339c8 633 ("libxklavier" ,libxklavier)
55613927 634 ("libxrandr" ,libxrandr)
2f8339c8
SB
635 ("libxfce4ui" ,libxfce4ui)
636 ("upower" ,upower)
637 ("xf86-input-libinput" ,xf86-input-libinput)))
08429f39 638 (home-page "https://www.xfce.org/")
55613927
SB
639 (synopsis "Xfce settings manager")
640 (description
641 "Settings manager for Xfce, it can control various aspects of the desktop
642like appearance, display, keyboard and mouse settings.")
643 (license gpl2+)))
5c776d27
SB
644
645(define-public thunar
646 (package
647 (name "thunar")
8ed3cc82 648 (version "1.8.10")
5c776d27
SB
649 (source (origin
650 (method url-fetch)
e2120220 651 (uri (string-append "http://archive.xfce.org/src/xfce/"
7275e56c 652 "thunar/" (version-major+minor version) "/"
8ed3cc82 653 "thunar-" version ".tar.bz2"))
5c776d27
SB
654 (sha256
655 (base32
8ed3cc82 656 "02g72bpbb8dkwspay9qii8bi99l87jn39gz6bamgp7p4q20qsi1x"))))
5c776d27
SB
657 (build-system gnu-build-system)
658 (native-inputs
659 `(("pkg-config" ,pkg-config)
660 ("intltool" ,intltool)))
661 (inputs
662 `(("exo" ,exo)
5c776d27 663 ("libexif" ,libexif)
ea226291 664 ("libgudev" ,libgudev)
5c776d27
SB
665 ("libnotify" ,libnotify)
666 ("libxfce4ui" ,libxfce4ui)
667 ("pcre" ,pcre)
668 ("xfce4-panel" ,xfce4-panel)
669 ("startup-notification" ,startup-notification)))
08429f39 670 (home-page "https://www.xfce.org/")
5c776d27
SB
671 (synopsis "Xfce file manager")
672 (description
673 "A modern file manager for graphical desktop, aiming to be easy-to-use and
674fast.")
675 (license gpl2+)))
aac03800
SB
676
677(define-public thunar-volman
678 (package
679 (name "thunar-volman")
3426c0e5 680 (version "0.9.5")
84ce2a94
TGR
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
3426c0e5 688 (base32 "0dqqkbhn43hhmhqyx1fnmawpvysdjzw6ln4ryf629wil6dlwd9vy"))))
aac03800
SB
689 (build-system gnu-build-system)
690 (native-inputs
691 `(("pkg-config" ,pkg-config)
692 ("intltool" ,intltool)))
693 (inputs
694 `(("exo" ,exo)
ea226291 695 ("libgudev" ,libgudev)
aac03800
SB
696 ("libnotify" ,libnotify)
697 ("libxfce4ui" ,libxfce4ui)))
08429f39 698 (home-page "https://www.xfce.org/")
aac03800
SB
699 (synopsis "Removable media manager for Thunar")
700 (description
701 "Thunar-volman is an extension for the Thunar File Manager, which enables
702automatic management of removable drives and media. For example, if
703thunar-volman is installed and configured properly, and you plug in your
e881752c 704digital camera, it will automatically spawn your preferred photo application
aac03800
SB
705and import the new pictures from your camera.")
706 (license gpl2+)))
3a4bfdde
SB
707
708(define-public xfwm4
709 (package
710 (name "xfwm4")
8549e0ca 711 (version "4.14.0")
3a4bfdde
SB
712 (source (origin
713 (method url-fetch)
199af142
KK
714 (uri (string-append "https://archive.xfce.org/src/xfce/"
715 name "/" (version-major+minor version) "/"
716 name "-" version ".tar.bz2"))
3a4bfdde
SB
717 (sha256
718 (base32
8549e0ca 719 "05dn4a1i0nm6wm3nyj7qli5bvfalxghcl7x543qr5l33vkw2n65l"))))
3a4bfdde
SB
720 (build-system gnu-build-system)
721 (native-inputs
722 `(("pkg-config" ,pkg-config)
723 ("intltool" ,intltool)))
724 (inputs
8ccf68f9 725 `(("libdrm" ,libdrm)
8549e0ca 726 ("libwnck" ,libwnck)
8ccf68f9
SB
727 ("libxcomposite" ,libxcomposite)
728 ("libxdamage" ,libxdamage)
3a4bfdde 729 ("libxfce4ui" ,libxfce4ui)
8ccf68f9 730 ("libxrandr" ,libxrandr)))
08429f39 731 (home-page "https://www.xfce.org/")
3a4bfdde
SB
732 (synopsis "Xfce window manager")
733 (description
734 "Window manager for Xfce, it handles the placement of windows
735on the screen.")
736 (license gpl2+)))
8a3c54e0
SB
737
738(define-public xfdesktop
739 (package
740 (name "xfdesktop")
8549e0ca 741 (version "4.14.1")
8a3c54e0
SB
742 (source (origin
743 (method url-fetch)
7cc102f9
KK
744 (uri (string-append "https://archive.xfce.org/src/xfce/"
745 name "/" (version-major+minor version) "/"
746 name "-" version ".tar.bz2"))
8a3c54e0
SB
747 (sha256
748 (base32
8549e0ca 749 "10pqxgpj7b57wpcsh2k98sj4aavcgxbs1lc8qsq4mibf4hba01gp"))
a9a07903
LC
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))))
8a3c54e0 756 (build-system gnu-build-system)
a9a07903
LC
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)))
8a3c54e0
SB
777 (native-inputs
778 `(("pkg-config" ,pkg-config)
a9a07903
LC
779 ("intltool" ,intltool)
780
781 ("inkscape" ,inkscape)
782 ("imagemagick" ,imagemagick)))
8a3c54e0
SB
783 (inputs
784 `(("exo" ,exo)
785 ("garcon" ,garcon)
786 ("libnotify" ,libnotify)
8549e0ca 787 ("libwnck" ,libwnck)
8a3c54e0
SB
788 ("libxfce4ui" ,libxfce4ui)
789 ("thunar" ,thunar)))
08429f39 790 (home-page "https://www.xfce.org/")
8a3c54e0
SB
791 (synopsis "Xfce desktop manager")
792 (description
793 "Desktop manager for Xfce, it sets the background color or image with
794optional application menu or icons for minimized applications or launchers,
795devices and folders.")
796 (license gpl2+)))
eea3e54c
SB
797
798(define-public xfce4-terminal
799 (package
800 (name "xfce4-terminal")
998754ef 801 (version "0.8.8")
eea3e54c
SB
802 (source (origin
803 (method url-fetch)
2494cd23 804 (uri (string-append "https://archive.xfce.org/src/apps/" name "/"
eea3e54c
SB
805 (version-major+minor version) "/"
806 name "-" version ".tar.bz2"))
807 (sha256
808 (base32
998754ef 809 "1zc7hkq77ajia099wxgh4wdvwifcg2zkcz5d2xsf1zm0sdh6mflg"))))
eea3e54c
SB
810 (build-system gnu-build-system)
811 (native-inputs
812 `(("pkg-config" ,pkg-config)
813 ("intltool" ,intltool)))
814 (inputs
815 `(("libxfce4ui" ,libxfce4ui)
415dd1f6 816 ("vte" ,vte)))
08429f39 817 (home-page "https://www.xfce.org/")
eea3e54c
SB
818 (synopsis "Xfce terminal emulator")
819 (description
820 "A lightweight and easy to use terminal emulator for Xfce. Features
821include a simple configuration interface, the ability to use multiple tabs
822with terminals within a single window, the possibility to have a
823pseudo-transparent terminal background, and a compact mode (where both the
824menubar and the window decorations are hidden) that helps you to save space
825on your desktop.")
826 (license gpl2+)))
0ca0ce53
SB
827
828(define-public xfce
829 (package
830 (name "xfce")
831 (version (package-version xfce4-session))
832 (source #f)
6150b5c7 833 (build-system trivial-build-system)
c860d6ef
RW
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")
e3cfef22
MW
843 directories)
844 #t)))))
c860d6ef 845 (inputs
0ca0ce53
SB
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)
85f09459 851 ("ristretto" ,ristretto)
0ca0ce53
SB
852 ("shared-mime-info" ,shared-mime-info)
853 ("thunar" ,thunar)
854 ("thunar-volman" ,thunar-volman)
855 ("tumlber" ,tumbler)
856 ("xfce4-appfinder" ,xfce4-appfinder)
0ca0ce53 857 ("xfce4-panel" ,xfce4-panel)
20095cc5 858 ("xfce4-power-manager" ,xfce4-power-manager)
0ca0ce53
SB
859 ("xfce4-session" ,xfce4-session)
860 ("xfce4-settings" ,xfce4-settings)
861 ("xfce4-terminal" ,xfce4-terminal)
862 ("xfconf" ,xfconf)
863 ("xfdesktop" ,xfdesktop)
35557712
SB
864 ("xfwm4" ,xfwm4)
865 ;; Panel plugins.
866 ("xfce4-battery-plugin" ,xfce4-battery-plugin)
867 ("xfce4-clipman-plugin" ,xfce4-clipman-plugin)
5a179844
AE
868 ("xfce4-pulseaudio-plugin" ,xfce4-pulseaudio-plugin)
869 ("xfce4-xkb-plugin" ,xfce4-xkb-plugin)))
1ec0c1f3
SB
870 (native-search-paths
871 ;; For finding panel plugins.
872 (package-native-search-paths xfce4-panel))
08429f39 873 (home-page "https://www.xfce.org/")
0ca0ce53
SB
874 (synopsis "Desktop environment (meta-package)")
875 (description
876 "Xfce is a lightweight desktop environment. It aims to be fast and low on
877system resources, while still being visually appealing and user friendly.")
878 (license gpl2+)))
c29e5fda
FPS
879
880(define-public xfce4-power-manager
881 (package
882 (name "xfce4-power-manager")
8549e0ca 883 (version "1.6.5")
c29e5fda
FPS
884 (source (origin
885 (method url-fetch)
43f2ff19
KK
886 (uri (string-append "https://archive.xfce.org/src/xfce/"
887 name "/" (version-major+minor version) "/"
888 name "-" version ".tar.bz2"))
c29e5fda
FPS
889 (sha256
890 (base32
8549e0ca 891 "0x3s2bdwfhp65dz5yn3k43j99ywqlsvrpz3pqmgwm0dik5wbdb8h"))))
c29e5fda 892 (build-system gnu-build-system)
c29e5fda
FPS
893 (native-inputs
894 `(("pkg-config" ,pkg-config)
895 ("intltool" ,intltool)))
896 (inputs
8549e0ca 897 `(("libxrandr" ,libxrandr)
898 ("gtk+" ,gtk+)
c29e5fda
FPS
899 ("upower" ,upower)
900 ("libnotify" ,libnotify)
901 ("libxfce4ui" ,libxfce4ui)))
08429f39 902 (home-page "https://www.xfce.org/")
c29e5fda
FPS
903 (synopsis "Xfce Power Manager")
904 (description
905 "This is a power manager for the Xfce desktop. It manages the power
906sources on the computer and the devices that can be controlled to reduce their
907power consumption (such as LCD brightness level, monitor sleep, CPU frequency
908scaling, etc). In addition, xfce4-power-manager provides a set of
909freedesktop-compliant DBus interfaces to inform other applications about current
910power level so that they can adjust their power consumption, and it provides the
911inhibit interface which allows applications to prevent automatic sleep.")
912 (license gpl2+)))
8e635287
KY
913
914(define-public ristretto
915 (package
916 (name "ristretto")
b82cf964 917 (version "0.10.0")
8e635287
KY
918 (source (origin
919 (method url-fetch)
920 (uri (string-append "http://archive.xfce.org/src/apps/ristretto/"
921 (version-major+minor version) "/"
7067d5f6 922 "ristretto-" version ".tar.bz2"))
8e635287
KY
923 (sha256
924 (base32
b82cf964 925 "0sa75m1w6yvv4xvzrwqiif6vnqgi29hjrixrh87nxss58bbms8hn"))))
8e635287
KY
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)
b82cf964 932 ("gtk+" ,gtk+)
8e635287
KY
933 ("libexif" ,libexif)
934 ("libxfce4ui" ,libxfce4ui)
935 ("librsvg" ,librsvg)
936 ("tumbler" ,tumbler)))
08429f39 937 (home-page "https://docs.xfce.org/apps/ristretto/start")
8e635287
KY
938 (synopsis "Fast and lightweight picture-viewer")
939 (description
940 "The Ristretto Image Viewer is an application that can be used to view,
941and scroll through images. It can be used to run a slideshow of images, open
942images with other applications like an image-editor or configure an image as
943the desktop wallpaper.")
944 (license gpl2+)))
f6744394
KY
945
946(define-public xfce4-taskmanager
947 (package
948 (name "xfce4-taskmanager")
be1e05df 949 (version "1.2.2")
f6744394
KY
950 (source (origin
951 (method url-fetch)
be1e05df 952 (uri (string-append "https://archive.xfce.org/src/apps/"
f6744394
KY
953 name "/" (version-major+minor version) "/"
954 name "-" version ".tar.bz2"))
955 (sha256
956 (base32
be1e05df 957 "04qflazmdrj4ys4r54yg4s5pqcjgk02idrjsls395zd4374636p4"))))
f6744394
KY
958 (build-system gnu-build-system)
959 (native-inputs
960 `(("intltool" ,intltool)
961 ("pkg-config" ,pkg-config)))
962 (inputs
867df63f 963 `(("libwnck" ,libwnck)
be1e05df
KK
964 ("libxmu" ,libxmu)
965 ("gtk+" ,gtk+)
966 ;; FIXME: Remove libxext and libxt when libxmu propagates them.
967 ("libxext" ,libxext)
968 ("libxt" ,libxt)))
08429f39 969 (home-page "https://goodies.xfce.org/projects/applications/xfce4-taskmanager")
f6744394
KY
970 (synopsis "Easy to use task manager")
971 (description
972 "This is a task manager for the Xfce desktop. It displays the CPU and
973memory usage graphically, and it can display processes as a tree.")
974 (license gpl2+)))
aea7d1d5
KK
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"))))
c629b99e 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)))))
aea7d1d5
KK
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)))
08429f39 1006 (home-page "https://www.xfce.org/projects/")
aea7d1d5
KK
1007 (synopsis "Simple calendar application with reminders")
1008 (description
1009 "This is a simple calendar application for the Xfce desktop. Orage has
1010alarms and uses the iCalendar format, making it compatible with many other
1011calendar applications. It also includes a panel clock plugin and an
1012international clock application capable of simultaneously showing clocks from
1013several different time zones.")
1014 (license gpl2+)))
b6310608
P
1015
1016(define-public xfce4-notifyd
1017 (package
1018 (name "xfce4-notifyd")
f47f9720 1019 (version "0.4.4")
b6310608
P
1020 (source (origin
1021 (method url-fetch)
e727cb11 1022 (uri (string-append "https://archive.xfce.org/src/apps/"
b6310608
P
1023 name "/" (version-major+minor version) "/"
1024 name "-" version ".tar.bz2"))
1025 (sha256
1026 (base32
f47f9720 1027 "0m8vlbwdxiw9nmimaj5np9l5qm784gxpkdvc881k0hjcz6n72189"))))
b6310608
P
1028 (build-system glib-or-gtk-build-system)
1029 (native-inputs
1030 `(("intltool" ,intltool)
1031 ("pkg-config" ,pkg-config)))
1032 (inputs
1033 `(("libxfce4ui" ,libxfce4ui)
e727cb11
KK
1034 ("libnotify" ,libnotify)
1035 ("xfce4-panel" ,xfce4-panel)))
b6310608
P
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
1040that implements the “server-side” portion of the Freedesktop desktop
1041notifications specification. Applications that wish to pop up a notification
1042bubble in a standard way can implicitly make use of xfce4-notifyd to do so by
1043sending standard messages over D-Bus using the
1044@code{org.freedesktop.Notifications} interface.")
1045 (license gpl2)))
53e1b30e 1046
1047(define-public xfburn
1048 (package
1049 (name "xfburn")
b440df0a 1050 (version "0.6.1")
53e1b30e 1051 (source (origin
1052 (method url-fetch)
1053 (uri (string-append "http://archive.xfce.org/src/apps/xfburn/"
1054 (version-major+minor version) "/"
f4c83064 1055 "xfburn-" version ".tar.bz2"))
53e1b30e 1056 (sha256
1057 (base32
b440df0a 1058 "0ydka5lf9n614gb5xc9bn9297nilgmkfqlb7q1y2yrc97882nxxk"))))
53e1b30e 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)
b440df0a 1070 ("gtk+" ,gtk+)
53e1b30e 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
1078the libburnia libraries. It can blank CD/DVD/BD(-RW)s, burn and
1079create iso images, audio CDs, as well as burn personal compositions
1080of data to either CD/DVD/BD.")
1081 (license gpl2+)))
5c485192
KK
1082
1083(define-public mousepad
1084 (package
1085 (name "mousepad")
3551f305 1086 (version "0.4.2")
5c485192
KK
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
3551f305 1094 "1myy7954r1a30dk7inwy7kwki7zvfbnnsc3a8swk72vzrbgjmh44"))))
5c485192
KK
1095 (build-system gnu-build-system)
1096 (arguments
3551f305 1097 '(#:configure-flags '(;; Use the GSettings keyfile backend rather than
5c485192
KK
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+)
3551f305 1117 ("gtksourceview" ,gtksourceview-3)
1118 ("xfconf" ,xfconf)))
5c485192
KK
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+)))
d28b6dda 1124
1125(define-public xfce4-screenshooter
1126 (package
1127 (name "xfce4-screenshooter")
a6bc056e 1128 (version "1.9.7")
d28b6dda 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
a6bc056e 1138 "1lbhl0sh0ayv3zhgzcd9hj9q9m3lnyv7vlglfqrl39i3782n2w8g"))))
d28b6dda 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
1153window or a selected region. You can set the delay that elapses before the screenshot
1154is taken and the action that will be done with the screenshot.
1155A plugin for the Xfce panel is also available.")
1156 (license gpl2+)))
b45e11da 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+)))
b6b257ed
IR
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+)))
f800291e 1233
7e53f357
IR
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
1258modes (LED, gradient, fire, etc…) to show the current CPU load of the
1259system. Various appearance options, like colors or size, are
1260customizable.
1261
1262On multi core or multi CPU systems, CPU Graph can either track and
1263display all of them at once, or at the user's option only a specific
1264core or CPU.")
1265 (license gpl2+)))
1266
58253d9f
IR
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
1291watch your every step.")
1292 (license gpl2+)))
1293
cd0826d6
IR
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
1319environment. Equake monitors earthquakes and will display an update
1320each time a new earthquake occurs.")
1321 (license gpl2+)))
1322
c8417d32
IR
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,
1347and a calendar appears when you left-click on it.")
1348 (license gpl2+)))
1349
2f81e678
IR
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
1374supports common mathematical operators (+, -, *, /, ^) with usual
1375precedence rules, and the following functions and common constants.")
1376 (license gpl2+)))
1377
18af3382
IR
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
1402governor and frequencies supported and used by your system.")
1403 (license gpl2+)))
1404
fa6a9d98
IR
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
71700f42 1429performance (bytes transferred per second).")
fa6a9d98
IR
1430 (license gpl2+)))
1431
3372e5d1
IR
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")
3306784a 1455 (synopsis "Embed arbitrary applications inside the Xfce panel")
3372e5d1
IR
1456 (description "This plugin enables the embedding of arbitrary
1457application windows into the Xfce panel. The window is resized into
1458the panel space available, and the associated program can be
1459automatically launched if it is not open.
1460
1461Example uses include embedding an instant messaging buddy list, a mail
1462client's new mail ticker, a simple media application, or a fancy clock
1463or timer. Combining with Xfce's ability to auto-hide panels can make
1464this very convenient.")
1465 (license gpl2+)))
1466
2aee1fef
IR
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
1491point frequently and displays a message when a limit is reached. There
1492are two limits: a warning limit where only the icon changes, and an
1493urgent limit that advise the user with a message. The icon button can
1494be clicked to open the chosen mount point.")
1495 (license bsd-2)))
1496
40f0181b
IR
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
1521script/program, captures its output (stdout) and displays the
1522resulting string into the panel.
1523
1524The string can also contain markup to displayed an image, a bar, a
1525button and a personalized tooltip.")
1526 (license gpl2+)))
1527
e18bc5e0
IR
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:
1553Caps, Scroll and Num Lock in Xfce panel.")
1554 (license gpl2+)))
1555
dd249f1b
IR
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,
1582multi-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
a004609a
IR
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
1618Features:
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,
1622tango 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
1625hovering the mouse over the plugin.
1626@item show a simple playlist window upon middle-click, permitting to
1627select a track to play
1628@item configurable MPD host/port/password.
1629@item toggles repeat/random features + enable/disable MPD outputs in
1630the right-click menu.
1631@item launch configurable client (gmpc, xterm -e ncmpc,..) through
1632right-click menu
1633@item configurable markup for tooltip and playlist, using a gmpc-like markup
1634@end itemize")
1635 (license isc)))
1636
461790c9
IR
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
1661your various devices. If you click on an unmounted devices it will
1662mount it and vice versa. There is a warning in case a device can't be
1663mounted or when unmounting fails.")
1664 (license gpl2+)))
1665
d6056cc7
IR
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
1690interfaces of your choice in the panel.")
1691 (license gpl2+)))
1692
5d0059e0
IR
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,
1720documents, and removable media. The places plugin brings much of the
1721functionality of GNOME's Places menu to Xfce.
1722
1723The plugin puts a simple button on the panel. Clicking on this button
1724opens 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
2ebc7316
IR
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
1759directly to your browser, such that you can search through your
1760favorite search engine or bug tracker right from the Xfce panel.")
1761 (license gpl2+)))
1762
de838a63
IR
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
1789notifier items (application indicators). Applications may use these
1790items to display their status and interact with the user. This
1791technology is a modern alternative to systray and follows the
1792freedesktop.org specification.")
1793 (license gpl2+)))
1794
b05edff0
IR
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
820a0869
IR
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
1848environment. It displays the current CPU load, the memory in use, the
1849swap space and the system uptime in the Xfce4 panel.")
1850 (license bsd-2)))
1851
3b04836e
IR
1852(define-public xfce4-time-out-plugin
1853 (package
1854 (name "xfce4-time-out-plugin")
5a8b8369 1855 (version "1.1.0")
3b04836e
IR
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
5a8b8369 1864 "068a8ck08g4g1msbr7hd5zzp6lsq2a1ry1r472x0rmbna2im2jpf"))))
3b04836e
IR
1865 (build-system gnu-build-system)
1866 (native-inputs
1867 `(("intltool" ,intltool)
1868 ("pkg-config" ,pkg-config)))
1869 (inputs
5a8b8369 1870 `(("gtk+" ,gtk+)
3b04836e
IR
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
1877breaks from the computer every X minutes. During breaks it locks your
1878screen. It optionally allows you to postpone breaks for a certain
1879time.")
1880 (license gpl2+)))
1881
415e7e20
IR
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
1906alarm at a specified time or at the end of a specified countdown
1907period.")
1908 (license gpl2+)))
1909
c6927c08
IR
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
1934for 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
f800291e
IR
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
1968lan interface (signal state, signal quality, network name (SSID)).")
1969 (license bsd-2)))
59b83c50
IR
1970
1971(define-public xfce4-weather-plugin
1972 (package
1973 (name "xfce4-weather-plugin")
1974 (version "0.10.0")
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 "0wlm80panxyn86l9qm3mbliqj7gkf2zyzak3w041zz9hg31a08s4"))))
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
1998local weather in the panel, using forecast data provided by the
1999@uref{https://met.no, Norwegian Meteorological Institute}.")
2000 (license gpl2+)))