2017-05-15 18:44:58 +02:00
|
|
|
{ mkDerivation, lib, copyPathsToStore
|
2017-04-14 12:39:38 +02:00
|
|
|
, extra-cmake-modules
|
|
|
|
, kwayland, libXrandr
|
|
|
|
, qtx11extras
|
|
|
|
}:
|
|
|
|
|
2017-05-15 18:44:58 +02:00
|
|
|
mkDerivation {
|
2017-04-14 12:39:38 +02:00
|
|
|
name = "libkscreen";
|
2017-05-15 18:44:58 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
propagatedBuildInputs = [ kwayland libXrandr qtx11extras ];
|
2017-04-14 12:39:38 +02:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
|
|
preConfigure = ''
|
2017-05-15 13:44:33 +02:00
|
|
|
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_LIBKSCREEN_BACKENDS=\"''${!outputLib}/$qtPluginPrefix/kf5/kscreen\""
|
2017-04-14 12:39:38 +02:00
|
|
|
'';
|
|
|
|
}
|