[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")
- 17/45: gnu: Add breeze-gtk., (continued)
- 17/45: gnu: Add breeze-gtk., guix-commits, 2021/01/31
- 19/45: gnu: Add kde-cli-tools., guix-commits, 2021/01/31
- 33/45: gnu: Add polkit-kde-agent-1., guix-commits, 2021/01/31
- 09/45: WIP services: Add KDE Plasme desktop service., guix-commits, 2021/01/31
- 05/45: gnu: Add kwayland-server., guix-commits, 2021/01/31
- 02/45: gnu: Add ksysguard., guix-commits, 2021/01/31
- 12/45: TEMP Add some scripts for maintaining KDE packages., guix-commits, 2021/01/31
- 14/45: TEMP Add custom `startkde` script to be used in the VM., guix-commits, 2021/01/31
- 16/45: gnu: Add bluedevil., guix-commits, 2021/01/31
- 29/45: gnu: Add plasma-pa., guix-commits, 2021/01/31
- 03/45: gnu: Add kwayland-integration.,
guix-commits <=
- 08/45: gnu: Add plasma-desktop., guix-commits, 2021/01/31
- 04/45: gnu: Add plasma-wayland-protocols., guix-commits, 2021/01/31
- 28/45: gnu: Add plasma-nm., guix-commits, 2021/01/31
- 36/45: gnu: Add user-manager., guix-commits, 2021/01/31
- 38/45: gnu: Add kmenuedit., guix-commits, 2021/01/31
- 44/45: TEMP add helper-scripts, guix-commits, 2021/01/31
- 20/45: gnu: Add kdeplasma-addons., guix-commits, 2021/01/31
- 23/45: gnu: Add kwrited., guix-commits, 2021/01/31
- 30/45: gnu: Add plasma-sdk., guix-commits, 2021/01/31
- 39/45: gnu: Add powerdevil., guix-commits, 2021/01/31