summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-06-26 21:36:03 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commit6d0f4fb738e60a69dd0c4d3d596712a3ebb96e97 (patch)
tree7b34d63f98cf2d6971de9b05d5c13654003d0733
parentcfb8c7d086072f9a12cb6bb546dec133e1fc75f4 (diff)
siguix: Add statusnotifier.
* siguix/packages/statusnotifier.scm (statusnotifier): New variable.
-rw-r--r--siguix/packages/statusnotifier.scm56
1 files changed, 56 insertions, 0 deletions
diff --git a/siguix/packages/statusnotifier.scm b/siguix/packages/statusnotifier.scm
new file mode 100644
index 0000000..6b5a111
--- /dev/null
+++ b/siguix/packages/statusnotifier.scm
@@ -0,0 +1,56 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (siguix packages statusnotifier)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix build-system glib-or-gtk)
+ #:use-module (guix packages)
+ #:use-module (guix git-download)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages autotools)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages pkg-config))
+
+(define-public statusnotifier
+ (package
+ (name "statusnotifier")
+ (version "1.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jjk-jacky/statusnotifier")
+ (commit version)))
+ (sha256
+ (base32
+ "12ybfnk3f2aq01fibx58nc6cn7zwscs4d9b01wlnzfyfmr0a207a"))))
+ (build-system glib-or-gtk-build-system)
+ (inputs (list gdk-pixbuf glib gtk+))
+ (native-inputs (list autoconf automake gtk-doc libtool pkg-config))
+ (home-page "https://github.com/jjk-jacky/statusnotifier")
+ (synopsis "Library to use KDE's StatusNotifierItem via GObject")
+ (description
+ "Starting with Plasma Next, KDE doesn't support the XEmbed systray in
+favor of their own Status Notifier Specification.
+
+This little library allows applications to easily create a GObject to
+manage a StatusNotifierItem, handling all the DBus interface and
+letting you simply deal with the object's properties and signals.")
+ (license license:gpl3+)))