From d99c9cd74365579208351ca744e89cc6f8195149 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Fri, 26 Aug 2022 05:43:16 +0200 Subject: [PATCH 60/81] gnu: Add bluedevil. * gnu/packages/kde-plasma.scm (bluedevil): New variable. diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 2826b53b9f..cc7901daff 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -58,6 +58,41 @@ (define-module (gnu packages kde-plasma) #:use-module (gnu packages xorg) #:use-module (gnu packages web)) +(define-public bluedevil + (package + (name "bluedevil") + (version "5.25.4") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/plasma/" + version + "/" + name + "-" + version + ".tar.xz")) + (sha256 + (base32 + "1cygnmigwqx1mqynfafcypkvf9bmz05rmrfwlxsksvll8yd9xn84")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules pkg-config qttools-5)) + (inputs (list kcoreaddons + kwidgetsaddons + kdbusaddons + knotifications + kwindowsystem + plasma-framework + ki18n + kio + kdeclarative + bluez-qt + shared-mime-info + qtdeclarative-5)) + (synopsis "Manages the Bluetooth settings of a Plasma Shell") + (description "This package provides Bluetooth manager for Plasma Shell.") + (home-page "https://invent.kde.org/plasma/bluedevil") + (license (list license:lgpl2.1 license:lgpl3)))) + (define-public breeze (package (name "breeze") -- 2.37.2