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

18 lines
511 B
Nix
Raw Normal View History

2017-05-26 20:44:36 +00:00
{
2017-05-26 21:22:27 +00:00
mkDerivation, lib, copyPathsToStore, propagate,
2017-05-26 20:44:36 +00:00
extra-cmake-modules,
kwayland, libXrandr, qtx11extras
}:
mkDerivation {
name = "libkscreen";
nativeBuildInputs = [ extra-cmake-modules ];
2017-05-26 20:44:36 +00:00
buildInputs = [ kwayland libXrandr qtx11extras ];
outputs = [ "out" "dev" ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
preConfigure = ''
2017-05-26 20:44:36 +00:00
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_LIBKSCREEN_BACKENDS=\"''${!outputBin}/$qtPluginPrefix/kf5/kscreen\""
'';
2017-05-26 21:22:27 +00:00
setupHook = propagate "out";
}