guix-commits
[Top][All Lists]
Advanced

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

03/45: gnu: Add kwayland-integration.


From: guix-commits
Subject: 03/45: gnu: Add kwayland-integration.
Date: Sun, 31 Jan 2021 10:27:19 -0500 (EST)

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

commit 8ee88fcf35ee5f8d87a0dfd9647858b21df8f7e4
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Fri Jun 9 13:26:24 2017 +0200

    gnu: Add kwayland-integration.
    
    * gnu/packages/kde-plasma.scm (kwayland-integration): New variable.
---
 gnu/packages/kde-plasma.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 39f0772..4cc4b3d 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -254,6 +254,47 @@ Currently the daemon has been ported to Linux, FreeBSD, 
Irix,
 NetBSD, OpenBSD, Solaris and Tru64 with varying degrees of completion.")
     (license (list license:gpl2 license:gpl2+ license:gpl3)))) ;; KDE e.V.
 
+(define-public kwayland-integration
+  (package
+    (name "kwayland-integration")
+    (version "5.19.5")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/plasma/" version
+                          "/kwayland-integration-" version ".tar.xz"))
+      (sha256
+       (base32 "054a5hr601f1dzy2fmd4qbbrpbdbj7w4cy216r3n0mnj9irys6vd"))))
+    (build-system qt-build-system)
+    (arguments
+     `(#:tests? #f  ;; FIXME: try to make this pass
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'check)
+         (add-after 'install 'check-after-install
+           (assoc-ref %standard-phases 'check))
+         (add-before 'check-after-install 'check-setup
+           (lambda* (#:key outputs #:allow-other-keys)
+             (setenv "QT_PLUGIN_PATH"
+                     (string-append (assoc-ref outputs "out")
+                                    "/lib/qt5/plugins:"
+                                    (getenv "QT_PLUGIN_PATH")))
+             #t)))))
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("qtwayland" ,qtwayland))) ;; required for the tests
+    (inputs
+     `(("kguiaddons" ,kguiaddons)
+       ("kidletime" ,kidletime)
+       ("kwayland" ,kwayland)
+       ("kwindowsystem" ,kwindowsystem)
+       ("qtbase" ,qtbase)))
+    (home-page "https://invent.kde.org/plasma/kwayland-integration";)
+    (synopsis "KWayland runtime integration plugins")
+    (description "Provides integration plugins for various KDE Frameworks for
+Wayland")
+    (license license:lgpl3+))) ; KDE e.V.
+
 (define-public libkscreen
   (package
     (name "libkscreen")



reply via email to

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