2017-05-26 21:44:36 +01:00
|
|
|
{
|
2020-08-25 10:43:59 +01:00
|
|
|
mkDerivation, lib, propagate,
|
2017-05-26 21:44:36 +01:00
|
|
|
extra-cmake-modules,
|
2021-09-27 20:52:51 +01:00
|
|
|
qtbase,
|
|
|
|
wayland-scanner, kwayland,
|
|
|
|
plasma-wayland-protocols, wayland,
|
|
|
|
libXrandr, qtx11extras
|
2017-04-14 11:39:38 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-15 17:44:58 +01:00
|
|
|
mkDerivation {
|
2022-03-06 21:28:56 +00:00
|
|
|
pname = "libkscreen";
|
2021-09-27 20:52:51 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules wayland-scanner ];
|
|
|
|
buildInputs = [ kwayland plasma-wayland-protocols wayland libXrandr qtx11extras ];
|
2017-05-26 21:44:36 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2020-08-25 10:43:59 +01:00
|
|
|
patches = [
|
|
|
|
./libkscreen-backends-path.patch
|
|
|
|
];
|
2017-04-14 11:39:38 +01:00
|
|
|
preConfigure = ''
|
2017-05-26 21:44:36 +01:00
|
|
|
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_LIBKSCREEN_BACKENDS=\"''${!outputBin}/$qtPluginPrefix/kf5/kscreen\""
|
2017-04-14 11:39:38 +01:00
|
|
|
'';
|
2017-05-26 22:22:27 +01:00
|
|
|
setupHook = propagate "out";
|
2017-04-14 11:39:38 +01:00
|
|
|
}
|