From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 2/7] gnu: Add qca. Date: Sun, 28 Feb 2016 12:10:07 +0200 Message-ID: <1456654212-31881-3-git-send-email-efraim@flashner.co.il> References: <1456654212-31881-1-git-send-email-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40672) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZyIx-0004MY-Si for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZyIv-0002ft-Kp for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:23 -0500 Received: from flashner.co.il ([178.62.234.194]:33749) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZyIv-0002fl-Ea for guix-devel@gnu.org; Sun, 28 Feb 2016 05:10:21 -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 A70B840543 for ; Sun, 28 Feb 2016 10:10:20 +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: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Register it. --- gnu-system.am | 1 + gnu/packages/kde.scm | 53 ++++++++++++++++++++++++++++++++++++++++++++++= ++++++ 2 files changed, 54 insertions(+) create mode 100644 gnu/packages/kde.scm diff --git a/gnu-system.am b/gnu-system.am index 502993b..a8efa8d 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -172,6 +172,7 @@ GNU_SYSTEM_MODULES =3D \ gnu/packages/jemalloc.scm \ gnu/packages/jrnl.scm \ gnu/packages/julia.scm \ + gnu/packages/kde.scm \ gnu/packages/kde-frameworks.scm \ gnu/packages/key-mon.scm \ gnu/packages/kodi.scm \ diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm new file mode 100644 index 0000000..64771fc --- /dev/null +++ b/gnu/packages/kde.scm @@ -0,0 +1,53 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2016 Efraim Flashner +;;; +;;; This file is 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 (a= t +;;; 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 . + +(define-module (gnu packages kde) + #:use-module (guix build-system cmake) + #:use-module (guix download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages tls) + #:use-module (gnu packages qt)) + +(define-public qca + (package + (name "qca") + (version "2.1.1") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.kde.org/stable/qca/" versio= n + "/src/qca-" version ".tar.xz")) + (sha256 + (base32 + "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm")))) + (build-system cmake-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("openssl" ,openssl) + ("qt" ,qt))) + (home-page "http://delta.affinix.com/qca/") + (synopsis "Libraries for the Qt Cryptographic Architecture") + (description "The Qt Cryptographic Architecture (QCA) provides a +straightforward and cross-platform API for a range of cryptographic feat= ures, +including SSL/TLS, X.509 certificates, SASL, OpenPGP, S/MIME CMS, and sm= art +cards.") + (license license:lgpl2.1))) --=20 2.7.0