From 879febb237ce9ec1a692ce2c4bb575ac7c155018 Mon Sep 17 00:00:00 2001 From: FuncProgLinux Date: Mon, 1 Sep 2025 12:24:00 -0600 Subject: [PATCH] gnu: Add mate-notification-daemon. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/mate.scm (mate-notification-daemon): New variable. Change-Id: Ieaf3e14a22e71a9ecdab8825c7f301dac5ec7314 Signed-off-by: 宋文武 --- gnu/packages/mate.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 766bde3a165f7b35defd06863aee66d7b65424d8..3eea56b91d73f50f916eeb9f7257d50faaa582d6 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm @@ -627,6 +627,38 @@ Interactive Weather Information Network (IWIN). mate-volume-control, a MATE volume control application and applet.") (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.1+)))) +(define-public mate-notification-daemon + (package + (name "mate-notification-daemon") + (version "1.28.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://mate/" + (version-major+minor version) + "/" + "mate-notification-daemon-" + version + ".tar.xz")) + (sha256 + (base32 "04zlmli3kv80h7fpf0xlxm0hkf238gj5hib4qb6bjxczzyqyq370")))) + (build-system glib-or-gtk-build-system) + (native-inputs (list pkg-config gettext-minimal libxml2)) + (inputs (list gtk+ + dbus-glib + libwnck + libnotify + libcanberra + mate-desktop + mate-panel + hicolor-icon-theme)) + (home-page "https://mate-desktop.org/") + (synopsis "Notification daemon for MATE") + (description + "This MATE Desktop component is meant to run on the background and +deliver notifications to the user.") + (license license:gpl2+))) + (define-public mate-panel (package (name "mate-panel")