nixpkgs/pkgs/desktops/plasma-5/libkscreen/default.nix

20 lines
490 B
Nix
Raw Normal View History

2017-05-26 13:44:36 -07:00
{
mkDerivation, lib, propagate,
2017-05-26 13:44:36 -07:00
extra-cmake-modules,
2019-09-29 10:27:36 -07:00
kwayland, libXrandr, qtbase, qtx11extras
}:
mkDerivation {
name = "libkscreen";
nativeBuildInputs = [ extra-cmake-modules ];
2017-05-26 13:44:36 -07:00
buildInputs = [ kwayland libXrandr qtx11extras ];
outputs = [ "out" "dev" ];
patches = [
./libkscreen-backends-path.patch
];
preConfigure = ''
2017-05-26 13:44:36 -07:00
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_LIBKSCREEN_BACKENDS=\"''${!outputBin}/$qtPluginPrefix/kf5/kscreen\""
'';
2017-05-26 14:22:27 -07:00
setupHook = propagate "out";
}