From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 11/31] gnu: kde-frameworks: Add breeze-icons. Date: Mon, 1 Aug 2016 20:13:22 +0200 Message-ID: <20160801181342.16203-12-david@craven.ch> References: <20160801181342.16203-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36242) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjL-0000K3-6d for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bUHjH-0000zs-5v for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:22 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:35209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bUHjF-0000oW-V9 for guix-devel@gnu.org; Mon, 01 Aug 2016 14:14:19 -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 (breeze-icons): New variable. Co-authored-by: David Craven --- gnu/packages/kde-frameworks.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 77501cc..23332cb 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -127,6 +127,33 @@ http://freedesktop.org/wiki/Specifications/open-collaboration-services/") Bluetooth stack. It is used by the KDE Bluetooth stack, BlueDevil.") (license (list license:lgpl2.1+ license:lgpl3+)))) +(define-public breeze-icons + (package + (name "breeze-icons") + (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 + "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qtbase" ,qtbase))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Default KDE Plasma 5 icon theme") + (description "Breeze provides a freedesktop.org compatible icon theme. +It is the default icon theme for the KDE Plasma 5 desktop.") + ;; The license file mentions lgpl3+. The license files in the source + ;; directories are lgpl3, while the top directory contains the lgpl2.1. + ;; text. + (license license:lgpl3+))) + (define-public kwindowsystem ;;; TODO qtx11extras isn't found (package -- 2.9.0