1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00
nixpkgs/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
310 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";
}