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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
634 B
Nix
Raw Normal View History

2017-05-26 21:44:36 +01:00
{
mkDerivation, fetchpatch,
2017-05-26 21:44:36 +01:00
extra-cmake-modules, kdoctools,
bluez-qt, kactivities, kauth, kconfig, kdbusaddons,
2017-05-26 21:44:36 +01:00
kglobalaccel, ki18n, kidletime, kio, knotifyconfig, kwayland, libkscreen,
2020-05-26 14:50:05 +01:00
ddcutil, networkmanager-qt, plasma-workspace, qtx11extras, solid, udev
2016-07-10 10:33:21 +01:00
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "powerdevil";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-26 21:44:36 +01:00
buildInputs = [
2016-07-10 10:33:21 +01:00
kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth
kglobalaccel ki18n kio kidletime kwayland libkscreen
2016-07-10 10:33:21 +01:00
networkmanager-qt plasma-workspace qtx11extras
2020-05-26 14:50:05 +01:00
ddcutil
];
cmakeFlags = [
"-DHAVE_DDCUTIL=On"
2016-07-10 10:33:21 +01:00
];
}