mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 08:04:47 +00:00
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
|
|
'';
|
|
}
|