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