26 lines
446 B
Nix
26 lines
446 B
Nix
|
|
{
|
||
|
|
mkKdeDerivation,
|
||
|
|
pkg-config,
|
||
|
|
qtsensors,
|
||
|
|
qtwayland,
|
||
|
|
dbus,
|
||
|
|
wayland-protocols,
|
||
|
|
}:
|
||
|
|
mkKdeDerivation {
|
||
|
|
pname = "kscreen";
|
||
|
|
|
||
|
|
extraNativeBuildInputs = [ pkg-config ];
|
||
|
|
|
||
|
|
extraBuildInputs = [
|
||
|
|
qtsensors
|
||
|
|
qtwayland
|
||
|
|
wayland-protocols
|
||
|
|
];
|
||
|
|
|
||
|
|
postFixup = ''
|
||
|
|
substituteInPlace $out/share/kglobalaccel/org.kde.kscreen.desktop \
|
||
|
|
--replace-fail dbus-send ${dbus}/bin/dbus-send
|
||
|
|
'';
|
||
|
|
meta.mainProgram = "kscreen-console";
|
||
|
|
}
|