From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [WIP v0.1 4/8] gnu: Add kde breeze-icons Date: Tue, 14 Jun 2016 23:15:06 +0200 Message-ID: <1465938910-15739-5-git-send-email-h.goebel@crazy-compilers.com> References: <1465938910-15739-1-git-send-email-h.goebel@crazy-compilers.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53591) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvgB-0004nW-SM for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCvg7-00031l-KY for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:23 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:52713) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCvg7-00031f-D7 for guix-devel@gnu.org; Tue, 14 Jun 2016 17:15:19 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3rTj9273H3z3hjPg for ; Tue, 14 Jun 2016 23:15:18 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3rTj926wcQzvjMk for ; Tue, 14 Jun 2016 23:15:18 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id 3n2D7y5rIz_n for ; Tue, 14 Jun 2016 23:15:17 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-133-227.dynamic.mnet-online.de [188.174.133.227]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Tue, 14 Jun 2016 23:15:17 +0200 (CEST) Received: from lenashee.goebel-consult.de (lenashee.goebel-consult.de [192.168.110.2]) by hermia.goebel-consult.de (Postfix) with ESMTP id 57BEE60BA9 for ; Tue, 14 Jun 2016 23:15:10 +0200 (CEST) In-Reply-To: <1465938910-15739-1-git-send-email-h.goebel@crazy-compilers.com> 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 * gnu/packages/kde-frameworks.scm (breeze-icons): New variable. --- 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 e4a947b..0a17568 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -128,6 +128,33 @@ 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 kde-frameworks-version) + (source + (origin + (method url-fetch) + (uri (string-append "http://download.kde.org/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1a7ikdq8a44n42i6swf29aqyfwjh05ir3ym0lzjzdb6133fzlb01")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qt" ,qt))) + (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 (package (name "kwindowsystem") -- 2.7.4