mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
17 lines
312 B
Nix
17 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";
|
|
}
|