WIP: bees service
[jackhill/guix/guix.git] / gnu / packages / stalonetray.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
3 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
4 ;;;
5 ;;; This file is part of GNU Guix.
6 ;;;
7 ;;; GNU Guix is free software; you can redistribute it and/or modify it
8 ;;; under the terms of the GNU General Public License as published by
9 ;;; the Free Software Foundation; either version 3 of the License, or (at
10 ;;; your option) any later version.
11 ;;;
12 ;;; GNU Guix is distributed in the hope that it will be useful, but
13 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;;; GNU General Public License for more details.
16 ;;;
17 ;;; You should have received a copy of the GNU General Public License
18 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20 (define-module (gnu packages stalonetray)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module ((guix licenses) #:select (gpl2+))
25 #:use-module (gnu packages xorg))
26
27 (define-public stalonetray
28 (package
29 (name "stalonetray")
30 (version "0.8.3")
31 (source
32 (origin
33 (method url-fetch)
34 (uri
35 (string-append "mirror://sourceforge/stalonetray/stalonetray/stalonetray-"
36 version "/stalonetray-" version ".tar.bz2"))
37 (sha256
38 (base32
39 "0k7xnpdb6dvx25d67v0crlr32cdnzykdsi9j889njiididc8lm1n"))))
40 (inputs `(("libx11" ,libx11)))
41 (build-system gnu-build-system)
42 (home-page "http://stalonetray.sourceforge.net")
43 (synopsis "Standalone freedesktop.org and KDE systray implementation")
44 (description
45 "Stalonetray is a stand-alone freedesktop.org and KDE system
46 tray (notification area) for X Window System/X11 (e.g. X.Org or XFree86). It
47 has full XEMBED support and minimal dependencies: an X11 lib only. Stalonetray
48 works with virtually any EWMH-compliant window manager.")
49 (license gpl2+)))