16 lines
270 B
Nix
16 lines
270 B
Nix
|
{
|
||
|
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
|
||
|
'';
|
||
|
}
|