kwindowsystem: purify platform plugin detection

This commit is contained in:
Thomas Tuegel
2017-04-28 05:54:18 -05:00
parent bd92780b4c
commit c37220fcf9
4 changed files with 29 additions and 2 deletions
@@ -0,0 +1,19 @@
{
kdeFramework, lib, copyPathsToStore,
extra-cmake-modules,
qtbase, qttools, qtx11extras
}:
kdeFramework {
name = "kwindowsystem";
meta = {
maintainers = [ lib.maintainers.ttuegel ];
broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
};
nativeBuildInputs = [ extra-cmake-modules qttools ];
propagatedBuildInputs = [ qtx11extras ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
preConfigure = ''
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QT_PLUGIN_PATH=\"$out/lib/qt5/plugins\""
'';
}