From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 30/31] gnu: kde-frameworks: Add sonnet. Date: Mon, 1 Aug 2016 20:13:41 +0200 Message-ID: <20160801181342.16203-31-david@craven.ch> References: <20160801181342.16203-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjn-0000n5-JC for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bUHjl-0001Om-ET for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:51 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:42647) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjk-0001N2-6W for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:49 -0400 In-Reply-To: <20160801181342.16203-1-david@craven.ch> 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" To: guix-devel@gnu.org From: Hartmut Goebel * gnu/packages/kde-frameworks.scm (sonnet): New variable. Co-authored-by: David Craven --- gnu/packages/kde-frameworks.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index a023a37..4e5c2f4 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -826,3 +826,29 @@ which are used in DBus communication.") querying and interacting with hardware independently of the underlying operating system.") (license license:lgpl2.1+))) + +(define-public sonnet + (package + (name "sonnet") + (version "5.24.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("qttools" ,qttools))) + (inputs + `(("qtbase" ,qtbase))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Multi-language spell checker") + (description "Sonnet is a plugin-based spell checking library for Qt-based +applications. It supports several different plugins, including HSpell, Enchant, +ASpell and HUNSPELL.") + (license license:lgpl2.1+))) -- 2.9.0