From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 3/7] gnu: Add snorenotify. Date: Sun, 28 Feb 2016 12:10:08 +0200 Message-ID: <1456654212-31881-4-git-send-email-efraim@flashner.co.il> References: <1456654212-31881-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZyIx-0004MZ-T7 for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZyIw-0002g5-9r for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:23 -0500 Received: from flashner.co.il ([178.62.234.194]:33750) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZyIw-0002g0-3S for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:22 -0500 Received: from localhost.localdomain (85.65.229.31.dynamic.barak-online.net [85.65.229.31]) by flashner.co.il (Postfix) with ESMTPSA id 49E2E40059 for ; Sun, 28 Feb 2016 10:10:21 +0000 (UTC) In-Reply-To: <1456654212-31881-1-git-send-email-efraim@flashner.co.il> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/kde.scm (snorenotify): New variable. --- gnu/packages/kde.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 64771fc..3c5632f 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -22,6 +22,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) + #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) #:use-module (gnu packages qt)) @@ -51,3 +52,28 @@ straightforward and cross-platform API for a range of cryptographic features, including SSL/TLS, X.509 certificates, SASL, OpenPGP, S/MIME CMS, and smart cards.") (license license:lgpl2.1))) + +(define-public snorenotify + (package + (name "snorenotify") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.kde.org/stable/snorenotify/" + version "/src/snorenotify-" version ".tar.xz")) + (sha256 + (base32 + "0jz6ivk90h7iwgyxar7xzzj8yvzn6s1my6cqs9bdnwqswfk1nhbd")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; both tests fail, require display + (inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("qt" ,qt))) + (home-page "https://techbase.kde.org/Projects/Snorenotify") + (synopsis "Qt notification framework") + (description "Snorenotify is a multi platform Qt notification framework. +Using a plugin system it is possible to create notifications with many +different notification systems") + (license license:lgpl3))) -- 2.7.0