guix-commits
[Top][All Lists]
Advanced

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

17/45: gnu: Add breeze-gtk.


From: guix-commits
Subject: 17/45: gnu: Add breeze-gtk.
Date: Sun, 31 Jan 2021 10:27:23 -0500 (EST)

htgoebel pushed a commit to branch wip-kde-plasma
in repository guix.

commit cb299fedf3d5c209bb2d8a67493b1a81289b76cc
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Wed Nov 27 22:23:06 2019 +0100

    gnu: Add breeze-gtk.
    
    * gnu/packages/kde-plasma.scm (breeze-gtk): New variable.
---
 gnu/packages/kde-plasma.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 183aa23..82d24e4 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -49,6 +49,7 @@
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pulseaudio)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages web)
   #:use-module (gnu packages xdisorg)
@@ -156,6 +157,41 @@ in KDE.  It contains:
 the Plasma Desktop.  Breeze is the default theme for the KDE Plasma desktop.")
     (license license:gpl2+)))
 
+(define-public breeze-gtk
+  (package
+    (name "breeze-gtk")
+    (version "5.19.5")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/plasma/" version
+                          "/breeze-gtk-" version ".tar.xz"))
+      (sha256
+       (base32 "1j2nq9yw1ragmgwrz9f6ca4ifpi86qv1bbprdgd2qm2yh7vb44sj"))))
+    ;; TODO: move to gnome.scm?
+    (properties `((upstream-name . "breeze-gtk")))
+    (build-system qt-build-system)
+    (arguments
+     '(#:tests? #f)) ; No 'test' target
+    (native-inputs
+     `(("breeze" ,breeze)
+       ("extra-cmake-modules" ,extra-cmake-modules)
+       ("python" ,python)
+       ("python-pycairo" ,python-pycairo) ; FIXME: needs to be a propagated 
input?
+       ("sassc" ,sassc)))
+    (inputs
+     `(("qtbase" ,qtbase)))
+    ;; TODO: run-time dependency: GTKEngine (required for GTK 2 theme)
+    (home-page "https://www.kde.org/plasma-desktop";)
+    (synopsis "GTK+ theme matching KDE's Breeze theme")
+    (description "A GTK+ theme created to match with the Plasma 5 Breeze
+theme.
+
+To set the theme in Plasma 5, install kde-gtk-config and use System Settings >
+Application Style > GNOME Application Style.  Also make sure to disable “apply
+colors to non-Qt applications“ in System Settings > Colors > Options.")
+    (license license:lgpl2.1+)))
+
 (define-public kdecoration
   (package
     (name "kdecoration")



reply via email to

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