mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
16 lines
312 B
Nix
16 lines
312 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
|
|
'';
|
|
meta.mainProgram = "kscreen-console";
|
|
}
|