nixpkgs/pkgs/desktops/plasma-5/powerdevil.nix

29 lines
972 B
Nix
Raw Normal View History

2017-05-26 20:44:36 +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
}:
mkDerivation {
2016-07-10 09:33:21 +00:00
name = "powerdevil";
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
];
patches = [
2020-09-01 13:48:03 +00:00
# Reduce log message spam by setting the default log level to Warning.
#(fetchpatch {
# url = "https://invent.kde.org/plasma/powerdevil/-/commit/c7590f9065ec9547b7fabad77a548bbc0c693113.patch";
# sha256 = "077whhi0jrb3bajx357k7n66hv7nchis8jix0nfc1zjvi9fm6pi2";
#})
];
2016-07-10 09:33:21 +00:00
}