depot/pkgs/kde/plasma/kscreen/default.nix

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

17 lines
312 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qtsensors,
dbus,
}:
mkKdeDerivation {
pname = "kscreen";
extraBuildInputs = [ qtsensors ];
postFixup = ''
substituteInPlace $out/share/kglobalaccel/org.kde.kscreen.desktop \
--replace-fail dbus-send ${dbus}/bin/dbus-send
'';
meta.mainProgram = "kscreen-console";
}