From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41760) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOlcu-0007rJ-Ai for guix-patches@gnu.org; Wed, 15 Apr 2020 13:15:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOlcs-0008GA-Aw for guix-patches@gnu.org; Wed, 15 Apr 2020 13:15:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53706) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOlcs-0008FP-2u for guix-patches@gnu.org; Wed, 15 Apr 2020 13:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOlcr-0000Mt-Ur for guix-patches@gnu.org; Wed, 15 Apr 2020 13:15:01 -0400 Subject: [bug#40644] gnu: Add notification-daemon. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41546) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOlbr-0007ED-J0 for guix-patches@gnu.org; Wed, 15 Apr 2020 13:14:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOlbq-0007EK-Ad for guix-patches@gnu.org; Wed, 15 Apr 2020 13:13:59 -0400 Received: from knopi.disroot.org ([178.21.23.139]:45300) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jOlbp-0007Bk-RD for guix-patches@gnu.org; Wed, 15 Apr 2020 13:13:58 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 4537120B96 for ; Wed, 15 Apr 2020 19:13:56 +0200 (CEST) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id MAocVlZNE3yS for ; Wed, 15 Apr 2020 19:13:53 +0200 (CEST) Date: Wed, 15 Apr 2020 13:13:42 -0400 From: Raghav Gururajan Message-ID: <20200415131342.0bfc3141.raghavgururajan@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/j1=lRFynCM3VD6PEXrmXyF=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40644@debbugs.gnu.org --MP_/j1=lRFynCM3VD6PEXrmXyF= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello Guix! Please find the attached patch to add the package 'notification-daemon' to guix. Regards, RG. --MP_/j1=lRFynCM3VD6PEXrmXyF= Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=notification-daemon.patch >From e64a23e5cac8b9c068f364602c9b0e21dd2b0908 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Mon, 13 Apr 2020 02:44:21 -0400 Subject: [PATCH] gnu: Add notification-daemon. * gnu/packages/gnome.scm (notification-daemon): New variable. --- gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 820811f8fa..2086334568 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -250,6 +250,34 @@ Desktop. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily and quickly.") (license license:gpl2+))) +(define-public notification-daemon + (package + (name "notification-daemon") + (version "3.20.0") + (source + (origin + (method url-fetch) + (uri + (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1rgchqi4j2ll7d6a7lgy7id0w9rrkwkgic1096fbm2zx6n7pc4yx")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("glib" ,glib) + ("gtk+" ,gtk+) + ("x11" ,libx11))) + (synopsis "Notification Daemon for GNOME Desktop") + (description "Notification-Daemon is the server implementation of the +freedesktop.org desktop notification specification.") + (home-page "https://wiki.gnome.org/Projects/NotificationDaemon") + (license license:gpl2+))) + (define-public mm-common (package (name "mm-common") -- 2.26.0 --MP_/j1=lRFynCM3VD6PEXrmXyF=--