2017-05-26 20:44:36 +00:00
|
|
|
{
|
2020-06-27 17:40:02 +00:00
|
|
|
mkDerivation, fetchpatch,
|
2017-05-26 20:44:36 +00:00
|
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
bluez-qt, kactivities, kauth, kconfig, kdbusaddons, kdelibs4support,
|
|
|
|
kglobalaccel, ki18n, kidletime, kio, knotifyconfig, kwayland, libkscreen,
|
2020-05-26 13:50:05 +00:00
|
|
|
ddcutil, networkmanager-qt, plasma-workspace, qtx11extras, solid, udev
|
2016-07-10 09:33:21 +00:00
|
|
|
}:
|
|
|
|
|
2017-05-15 16:44:58 +00:00
|
|
|
mkDerivation {
|
2016-07-10 09:33:21 +00:00
|
|
|
name = "powerdevil";
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-05-26 20:44:36 +00:00
|
|
|
buildInputs = [
|
2016-07-10 09:33:21 +00:00
|
|
|
kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth
|
|
|
|
kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen
|
|
|
|
networkmanager-qt plasma-workspace qtx11extras
|
2020-05-26 13:50:05 +00:00
|
|
|
ddcutil
|
|
|
|
];
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DHAVE_DDCUTIL=On"
|
2016-07-10 09:33:21 +00:00
|
|
|
];
|
2020-06-27 17:40:02 +00:00
|
|
|
patches = [
|
2020-09-01 13:48:03 +00:00
|
|
|
# Reduce log message spam by setting the default log level to Warning.
|
2020-12-03 21:39:53 +00:00
|
|
|
#(fetchpatch {
|
|
|
|
# url = "https://invent.kde.org/plasma/powerdevil/-/commit/c7590f9065ec9547b7fabad77a548bbc0c693113.patch";
|
|
|
|
# sha256 = "077whhi0jrb3bajx357k7n66hv7nchis8jix0nfc1zjvi9fm6pi2";
|
|
|
|
#})
|
2020-06-27 17:40:02 +00:00
|
|
|
];
|
2016-07-10 09:33:21 +00:00
|
|
|
}
|