From 98bc5e77aff36fb787803f32c65b7f7936baf345 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Tue, 14 Sep 2021 21:18:06 +1000 Subject: [PATCH] gnu: Add plasma-wayland-protocols. * gnu/packages/kde-frameworks.scm (plasma-wayland-protocols): New variable. Signed-off-by: Marius Bakke --- gnu/packages/kde-frameworks.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 391db94f3a..b3bff9727f 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1036,6 +1036,30 @@ (define-public ksyntaxhighlighting (properties `((upstream-name . "syntax-highlighting"))) (license license:lgpl2.1+))) +(define-public plasma-wayland-protocols + (package + (name "plasma-wayland-protocols") + (version "1.6.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/" name "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "07zhf2dzacj4xlhackpzaxqnp0d1ldkqlx0f313pw1pgd74zlkxp")))) + (build-system cmake-build-system) + (native-inputs (list extra-cmake-modules)) + (arguments '(#:tests? #f)) ;no tests + (home-page "https://community.kde.org/Frameworks") + (synopsis "KDE Plasma Wayland Protocols") + (description + "This package contains XML files describing non-standard Wayland +protocols used in KDE Plasma.") + ;; The XML files have varying licenses, open them for details. + (license (list license:bsd-3 + license:lgpl2.1+ + license:expat)))) + (define-public kwayland (package (name "kwayland")