guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[WIP v0.1 4/8] gnu: Add kde breeze-icons


From: Hartmut Goebel
Subject: [WIP v0.1 4/8] gnu: Add kde breeze-icons
Date: Tue, 14 Jun 2016 23:15:06 +0200

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]